<!DOCTYPE html>
<html>
<head>
<title> new document </title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk"/>
<script type="text/javascript">
var message=confirm("是否打开");
// 新窗口打开时弹出确认框,是否打开
if(message==true)
{
var newmessage=prompt("请输入要打开的网址");
// 通过输入对话框,确定打开的网址,默认为 http://www.imooc.com/ if newmessage!=NULL;
{
window.open('newmessage','width=400px','height=500px','menubar=no','toolbar=no');
//打开的窗口要求,宽400像素,高500像素,无菜单栏、无工具栏。 }
else
;
</script>
</head>
<body>
<input type="button" value="新窗口打开网站" onclick="openWindow()" />
</body>
</html>
function openWindow(){
var x=confirm("打开新窗口?");
if(x==true)
{var newwindow=prompt("please input Website:","http://www.imooc.com");
if(newwindow==null){
alert("取消了操作")
}else{window.open(newwindow,'_blank','width=400,height=500,menubar=no,toolbar=no')
}
}
else{ }
function openWindow(){
if(window.confirm('是否打开')){
window.open('https://www.baidu.com/','_black','width=400,height=500,menubar=no,toolbar=no');
}
}
function openWindow(){
var x = confirm("new window?");
if(x == true){
window.open('http://www.imooc.com','_blank','width=400,height=500,menubar=no,toolbar=no');
}
}
两种方法都可以
function openWindow(){
var mysure=confirm("请问你要打开新窗口吗?");
if(mysure){
var myurl=prompt("请输入要打开的窗口网址:");
window.open(myurl,'_blank','width=400,height=500,toolbar=no,menubar=no');
}else{
alert("不打开就算了");
}
}
要定义方法的 而且细节上有点错
要定义方法的 而且细节上有点错
function openWindow(){
var x=confirm("new window?");
if(x==true)
{
var newwindow=prompt("please input Website:","http://www.imooc.com");
window.open(newwindow,'_blank','width=400,height=500,menubar=no,toolbar=no')
}
else{}
}