本文目录一览:
- 1、javascript open函数
- 2、如何用js的open函数在同页面中打开iframe页面
- 3、使用JS代码window.open()打开XXX.jsp时,把参数传给XXX.jsp后怎么在XXX。jsp页面得到这个参数
- 4、如果在js代码中使用windows的open()方法 会不会被浏览器阻止啊?
- 5、大家帮忙看下关于window.open()的js代码
javascript open函数
您是怎样调用?我分别是过这两个方法都得哦。您试试。。。
方法1:这个是通过一进入网页调用的。
html
head
meta http-equiv="Content-Language" content="zh-cn"
meta http-equiv="Content-Type" content="text/html; charset=gb2312"
title新建网页 1/title
/head
SCRIPT language="javascript"
!--
function ChangeQty(pn)
{
window.location.href="";
window.open('');
}
//--/SCRIPT
body onload="ChangeQty()"
/body
/html
——————————————————————————————
方法2:这个是通过点击来调用的。
html
head
meta http-equiv="Content-Language" content="zh-cn"
meta http-equiv="Content-Type" content="text/html; charset=gb2312"
title新建网页 1/title
/head
body
SCRIPT language="javascript"
!--
function ChangeQty(pn)
{
window.location.href="";
window.open('');
}
//--/SCRIPT
a href="#" onclick="ChangeQty()"点击/a
/body
/html
——————————————————————————————
如何用js的open函数在同页面中打开iframe页面
这很好办 你只要改变A页面中Iframe的 src就可以啦
或者:
window.open('b.html','a_iframe');
iframe name="a_iframe" id="'a_iframe'" src="" marginwidth="0" marginheight="0" scrolling="no" frameborder="0" WIDTH="100%" height="100%"/iframe
使用JS代码window.open()打开XXX.jsp时,把参数传给XXX.jsp后怎么在XXX。jsp页面得到这个参数
比如说你要把id=4传到 xxx.jsp.
只需要:
window.open(xxx.jsp?id=4);
然后在 xxx.jsp 使用
String id = request.getParameter("id");
即可。。
如果在js代码中使用windows的open()方法 会不会被浏览器阻止啊?
可能会的,
如果浏览器启用了弹出窗口阻止程序就不能弹出
可以使用其他方法解决这样的问题
建立一个隐藏的超链接标签,用js触发这个超链接标签的click事件即可
大家帮忙看下关于window.open()的js代码
改成这样就能达到你要的效果了、
a.html
script
var postingString = "测试字符串";
//var postingString = document.myform.user.value;
function post()
{
//alert(postingString);
window.open("b.html");
}
/script
form name="myform"
input type="text" name="user"
input type="button" value="发送" onClick="post()"
/form
b.html
script
function get()
{
newform.user.value = window.opener.document.myform.user.value; //window.opener.postingString;
}
/script
body onload="get()"
form name="newform"
input type="text" name="user"
/form
/body