发布网友 发布时间:2022-04-23 14:45
共8个回答
热心网友 时间:2022-04-23 04:15
可以先把子页面设置display:none;就是隐藏的意思,因为显示的时候是遮罩层的那一种,所以还要设置z-index:1。当点击父页面的按钮时弹出子页面,用show()这个jquery函数就行了。
热心网友 时间:2022-04-23 05:33
<a href="##"
onclick="window.open('index.cfm','Derek','height=100,width=100,status=yes,toolbar=yes,menubar=no,location=no');void(0);">aaaaaaaaaaaaa</a>
可以把onclick事件写一个js方法。js内容还是"window.open('index.cfm','Derek','height=100,width=100,status=yes,toolbar=yes,menubar=no,location=no')
热心网友 时间:2022-04-23 07:08
那你可以使用的是写一个按钮点击事件的。在方法里面写window.location.bref="网址";
热心网友 时间:2022-04-23 08:59
window 对象
window.open(url,name,feature,replace);//打开新窗口热心网友 时间:2022-04-23 11:07
Window.location.href="*****"
热心网友 时间:2022-04-23 13:32
window.location.href="网址"
热心网友 时间:2022-04-23 16:13
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>JS实现打开新页面</title>
<script type="text/javascript">
function open1(){
window.location.href="http://www.baidu.com";
}
</script>
</head>
<body>
<a href="javascript:void(0)" onclick="open1()">点击我,在当前页面打开指定的页面</a>
</body>
扩展资料
js打开新窗口与页面跳转
1、在当前窗口中打开窗口
window.location.href="http://www.baidu.com".
等同于<a href="http://www.baidu.com" title="百度">百度一下</a>
2、在新窗口中打开新窗口
window.open("http://www.baidu.com").
等同于<a href ="http://www.baidu.com" title="百度" target = "_blank">百度一下</a>
热心网友 时间:2022-04-23 19:11
一个新页面,