首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Java Web开发 >

一个js打开windows窗口有关问题,

2012-02-02 
一个js打开windows窗口问题,高手请进。点击button调用js弹出windows窗口,就像邮箱中点击附件上传弹出一个wi

一个js打开windows窗口问题,高手请进。
点击button调用js弹出windows窗口,就像邮箱中点击附件上传弹出一个windows选项窗口。 用js该如何实现。


[解决办法]
open Method Internet Development Index 

--------------------------------------------

Opens a new window and loads the document specified by a given URL.

What's New for Microsoft® Internet Explorer 6
As of Internet Explorer 6, the _media value of the sName parameter specifies that this method loads a URL into the HTML content area of the Media Bar. 

Syntax

oNewWindow = window.open( [sURL] [, sName] [, sFeatures] [, bReplace])
Parameters

sURL Optional. String that specifies the URL of the document to display. If no URL is specified, a new window with about:blank is displayed. 
sName Optional. String that specifies the name of the window. This name is used as the value for the TARGET attribute on a form or an a element._blank The sURL is loaded into a new, unnamed window. 
_media The sURL is loaded into the HTML content area of the Media Bar. Available in Internet Explorer 6 or later. 
_parent The sURL is loaded into the current frame's parent. If the frame has no parent, this value acts as the value _self. 
_search Available in Internet Explorer 5 and later. The sURL is opened in the browser's search pane. 
_self The current document is replaced with the specified sURL . 
_top sURL replaces any framesets that may be loaded. If there are no framesets defined, this value acts as the value _self. 
 
sFeatures Optional. This String parameter is a list of items separated by commas. Each item consists of an option and a value, separated by an equals sign (for example, "fullscreen=yes, toolbar=yes"). The following features are supported.channelmode = { yes | no | 1 | 0 } Specifies whether to display the window in theater mode and show the channel band. The default is no. 
directories = { yes | no | 1 | 0 } Specifies whether to add directory buttons. The default is yes. 
fullscreen = { yes | no | 1 | 0 } Specifies whether to display the browser in full-screen mode. The default is no. Use full-screen mode carefully. Because this mode hides the browser's title bar and menus, you should always provide a button or other visual clue to help the user close the window. ALT+F4 closes the new window. A window in full-screen mode must also be in theater mode (channelmode).
height = number Specifies the height of the window, in pixels. The minimum value is 100. 
left = number Specifies the left position, in pixels. This value is relative to the upper-left corner of the screen. The value must be greater than or equal to 0.
location = { yes | no | 1 | 0 } Specifies whether to display the input field for entering URLs directly into the browser. The default is yes. 
menubar = { yes | no | 1 | 0 } Specifies whether to display the menu bar. The default is yes. 
resizable = { yes | no | 1 | 0 } Specifies whether to display resize handles at the corners of the window. The default is yes. 
scrollbars = { yes | no | 1 | 0 } Specifies whether to display horizontal and vertical scroll bars. The default is yes. 
status = { yes | no | 1 | 0 } Specifies whether to add a status bar at the bottom of the window. The default is yes. 
titlebar = { yes | no | 1 | 0 } Specifies whether to display a title bar for the window. This parameter is ignored unless the calling application is an HTML Application or a trusted dialog box. The default is yes. 
toolbar = { yes | no | 1 | 0 } Specifies whether to display the browser toolbar, making buttons such as Back, Forward, and Stop available. The default is yes. 
top = number Specifies the top position, in pixels. This value is relative to the upper-left corner of the screen. The value must be greater than or equal to 0.


width = number Sets the width of the window, in pixels. The minimum value is 100. 
 
bReplace Optional. When the sURL is loaded into the same window, this Boolean parameter specifies whether the sURL creates a new entry or replaces the current entry in the window's history list. true sURL replaces the current document in the history list 
false sURL creates a new entry in the history list.
 

Return Value

Returns a reference to the new window object. Use this reference to access properties and methods on the new window.

Remarks

By default, the open method creates a window that has a default width and height and the standard menu, toolbar, and other features of Internet Explorer. You can alter this set of features by using the sFeatures parameter. This parameter is a string consisting of one or more feature settings. 

When the sFeatures parameter is specified, the features that are not defined in the parameter are disabled. Therefore, when using the sFeatures parameter, it is necessary to enable all the features that are to be included in the new window. If the sFeatures parameter is not specified, the window features maintain their default values. In addition to enabling a feature by setting it to a specific value, simply listing the feature name also enables that feature for the new window.

Internet Explorer 5 allows further control over windows through the implementation of title in the sFeatures parameter of the open method. Turn off the title bar by opening the window from a trusted application, such as Microsoft Visual Basic® or an HTML Application (HTA). These applications are considered trusted, because each uses Internet Explorer interfaces instead of the browser.

When a function fired by an event on any object calls the open method, the window.open method is implied. 

SHOWExample

<SCRIPT LANGUAGE="JScript">
function foo() {
open('about:blank');}
</SCRIPT>
<BODY onclick="foo();">
Click this page and window.open() is called.
</BODY>

When an event on any object calls the open method, the document.open method is implied. 

<BUTTON onclick="open('Sample.htm');">
Click this button and document.open() is called.
</BUTTON>

Example

This example uses the open method to create a new window that contains Sample.htm. The new window is 200 pixels by 400 pixels and has a status bar, but it does not have a toolbar, menu bar, or address field.

window.open("Sample.htm",null,
"height=200,width=400,status=yes,toolbar=no,menubar=no,location=no");

[解决办法]
那个窗口点击的是一个文本框,只不过是设置type="file"时的弹出窗口,那个没有设置单独的弹出窗口,html会自动解析成那样的
[解决办法]
网上找的。没验证。你可以去看看。

记得下载jar包啊 
别忘了把名改成smartUpload.jar 
http://www.ciw.com.cn/blog/UploadFiles/2006-8/816529534.rar 

Utility类: 

package com.tidyinfo.utils; 

import java.util.Calendar; 

public class Utility { 

//生成形如:\2006\08\18的路径 
private String path; 

//生成形如: 20060818125012的唯一id号 
private String id; 

//生成形如:/2006/08/18的路径 
private String url; 

private String hour; 

private String year; 

private String month; 

private String day; 

private String minate; 

private String second; 

/** Creates a new instance of Utility */ 
public Utility() { 
this.year =new Integer(Calendar.getInstance().get(Calendar.YEAR)).toString(); 
this.month = parseToString(Calendar.getInstance().get(Calendar.MONTH)+1); 


this.day = parseToString(Calendar.getInstance().get(Calendar.DAY_OF_MONTH)); 
this.hour = parseToString(Calendar.getInstance().get(Calendar.HOUR_OF_DAY)); 
this.minate = parseToString(Calendar.getInstance().get(Calendar.MINUTE)); 
this.second = parseToString(Calendar.getInstance().get(Calendar.SECOND)); 
this.setId(); 
this.setPath(); 
this.setUrl(); 


protected String parseToString(int i){ 
return i<10?("0"+i):new Integer(i).toString(); 


public String getId(){ 
return this.id; 


public String getPath(){ 
return this.path; 


public String getUrl(){ 
return this.url; 


protected void setId(){ 
this.id = this.year+this.month+this.day+this.hour+this.minate+this.second; 


protected void setPath(){ 
this.path = "\\"+this.year + "\\" + this.month + "\\" + 
this.day ; 


protected void setUrl(){ 
this.url = this.path.replace('\\','/'); 




Action:(根据不同情况要更改相关代码) 

User userForm = new User(); 
String result = new String(); 
SmartUpload su = new SmartUpload(); 

//文件名 
String filename = new String(); 
//文件扩展名 
String fileext = new String(); 

//文件上传后存储的路径 
String path = request.getRealPath(request.getContextPath()); 
path = path.substring(0,path.lastIndexOf("\\")); 
path += "\\images"; 

//图片的url 
String url = new String(); 
//创建文件夹 
java.io.File file = new java.io.File(path); 
file.mkdirs(); 
try{ 
// 上传初始化 
su.initialize(this.servlet.getServletConfig(),request,response); 
//设定上传限制 
//1.限制每个上传照片的最大长度。 
su.setMaxFileSize(5000000); 
//2.限制总上传数据的长度。 
su.setTotalMaxFileSize(10000000); 
//3.设定允许上传的照片(通过扩展名限制)。 
su.setAllowedFilesList("jpg,gif,GIF,JPG"); 
//上传照片 
su.upload(); 
//获得请求的表单数据 
String username = su.getRequest().getParameter("username");//username 
String password = su.getRequest().getParameter("password");//password 
String sex = su.getRequest().getParameter("sex");//sex 
String email =su.getRequest().getParameter("email");//email 
String apwd =su.getRequest().getParameter("apwd");//question of password 
String rpwd =su.getRequest().getParameter("rpwd");//anser of password 
userForm.setUsername(username); 
userForm.setPassword(password); 
userForm.setSex(sex); 
userForm.setEmail(email); 
userForm.setApwd(apwd); 
userForm.setRpwd(rpwd); 

//将上传照片全部保存到指定目录 
if(!su.getFiles().getFile(0).isMissing()){ 

su.save(path,su.SAVE_PHYSICAL); 

//文件名 
filename = su.getFiles().getFile(0).getFileName(); 
//得到扩展名 
fileext = su.getFiles().getFile(0).getFileExt(); 
//给图片改名,命名形如:20060814135411.gif 


Utility u = new Utility(); 
String newName = u.getId()+"."+fileext; 

java.io.File oldFile = new java.io.File(path+"\\"+filename); 
java.io.File newFile = new java.io.File( path + "\\"+newName); 

//上传图片的url 
url = request.getContextPath()+"/images/"+newName; 

if(oldFile!=null){ 
oldFile.renameTo(newFile); 
}else{ 
result+="命名出错!"; 

System.out.println("0000000000000000000"+filename); 


System.out.println("0000000000000000000"+path+"\\"+newName); 
System.out.println("0000000000000000000"+url); 
System.out.println(result); 

}catch(com.jspsmart.upload.SmartUploadException e){ 
result += "file出错信息:"; 
result += e.getMessage(); 
System.out.println(result); 
}
 

热点排行