chx_1998
2018-06-19 11:24
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script type="text/javascript">
// 新窗口打开时弹出确认框,是否打开
var URL = "http://www.imooc.com/"
function openWinow(){
var aa = confirm("是否要跳转到其他页面")
if(aa==true){
prompt("请输入需要打开的网址",URL);
window.open(
'URL' '_blank','height=500,width=400,menubar=no,toolbar=no')
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openWindow(){
var abs=confirm("是否打开窗口");
if(abs)
window.open(' http://www.imooc.com/','_blank','width=400px,top=500px,left=0,menubar=no,toolbar=no')
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
// 新窗口打开时弹出确认框,是否打开
var URL = "http://www.imooc.com/"
function openWindow(){
var aa = confirm("是否要跳转到其他页面")
if(aa==true){
prompt("请输入需要打开的网址",URL);
window.open(
URL ,'_blank','height=500,width=400,menubar=no,toolbar=no')
}
}
// 新窗口打开时弹出确认框,是否打开
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
JavaScript入门篇
739816 学习 · 9566 问题
相似问题
回答 2
回答 1
回答 2
回答 3
回答 1