南宫十八
2018-12-11 15:58
<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
function openWindow() {
if (confirm("打开新窗口")) {
if (var newpage=prompt("打开新窗口","http://www.imooc.com/")){
window.open(newpage,'_blank',"width=400px,height=500px,menubar=no,toolbar=no,scrollbars=no,status=no");
}
else{
alert("你选择了取消");
}
}
else {
alert("你选择了取消");
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
ok吧
function openWindow(){
var newwindow=confirm("是否打开慕课网?")
if(newwindow==true)
{
document.write('我点击了确定');
window.open('http://www.imooc.com','_blank','width=500','menubar=no','toolbar=no');
}
else
{
document.write('我点击了取消');
}
}
function openWindow(){
var newwindow=confirm("是否打开慕课网?")
if(newwindow==true)
{
document.write('我点击了确定');
window.open('http://www.imooc.com','width=400,height=500,menubar=no,toolbar=no');
}
else
{
document.write('我点击了取消');
}
}
<!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 xin=confirm("你确定要打开新窗口吗?"); //首先设置变量,用confirm确认信息框
if ( xin == true) { //if判断,当选择确定,返回true的时候,下面用window.open打开页面
window.open('http://www.tingchefm.com/','_blank','width=400,height=500,menubar=no,toolbar=no');
} else{
//if判断,当选择取消,返回false的时候,不进行任何操作
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
JavaScript入门篇
739817 学习 · 9566 问题
相似问题