发布网友 发布时间:2022-04-23 18:28
共5个回答
热心网友 时间:2022-04-27 17:59
您是怎样调用?我分别是过这两个方法都得哦。您试试。。。
方法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>
——————————————————————————————
热心网友 时间:2022-04-27 19:17
window.open("http://www.baidu.com");有些浏览器的会拦截这个函数弹出的窗口,可能也出不来,你可以自己定义一个函数调用这个方法解决这个问题
热心网友 时间:2022-04-27 20:52
open("http://www.baidu.com");
热心网友 时间:2022-04-27 22:43
加上http://应该就可以了
热心网友 时间:2022-04-28 00:51
window.open