当前位置: 技术问答>java相关
怎样使用window.open打开窗口并使其兼有submit表单提交的功能!急!
来源: 互联网 发布时间:2015-06-16
本文导语: 怎样使用window.open打开窗口并使其兼有submit表单提交的功能!急! 或在用window.open打开窗口时怎样传递文本框中的参数! | 请看源码: var win=window.open("","CCCC","directories=on,toolbar=no,location=no,res...
怎样使用window.open打开窗口并使其兼有submit表单提交的功能!急!
或在用window.open打开窗口时怎样传递文本框中的参数!
或在用window.open打开窗口时怎样传递文本框中的参数!
|
请看源码:
var win=window.open("","CCCC","directories=on,toolbar=no,location=no,resizable=0,width="600",height="400",top=0,left=0");
document.DForm.action="/tech-qa-java/chkuserlogin.html";
document.DForm.target="CCCC";
明白了吗?
var win=window.open("","CCCC","directories=on,toolbar=no,location=no,resizable=0,width="600",height="400",top=0,left=0");
document.DForm.action="/tech-qa-java/chkuserlogin.html";
document.DForm.target="CCCC";
明白了吗?
|
ebstar的方法应该可以吧。就用你啦 。
window.open("test.jsp?tValue=abc&vname=tName","winSelect",location=no scrollbars=yes menubar=no status=no resizable=1 width=640 height=400 left=80 top=80");
tValue=abc&vname=tName为所带参数。
winSelect为窗口名。
location=no scrollbars=yes menubar=no status=no resizable=1 width=640 height=400 left=80 top=80
为打开窗口的属性参数。
window.open("test.jsp?tValue=abc&vname=tName","winSelect",location=no scrollbars=yes menubar=no status=no resizable=1 width=640 height=400 left=80 top=80");
tValue=abc&vname=tName为所带参数。
winSelect为窗口名。
location=no scrollbars=yes menubar=no status=no resizable=1 width=640 height=400 left=80 top=80
为打开窗口的属性参数。