怎么調用別的網站并打開
我的代碼如下
<!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 ope=confirm("是否打開網站");
? ? if(ope)?
? ? var url=prompt("你要打開的網址是:","http://www.xianlaiwan.cn")
? ? if(url!='')
? ? {window.open('http://www.xianlaiwan.cn','_blank','width=400,height=500,menubar=no,toolbar=no');}
? ? else
? ? {var ano=confirm("是否打開別的網站?");
? ? if(ano)
? ? {
? ? ? ? var net=prompt("請輸入你要打開的網站!");
? ? window.open(net,'_blank'); ? ??
? ? }
? ? }
? }
? </script>?
?</head>?
?<body>?
?<input type="button" value="新窗口打開網站" onclick="openWindow()" />?
?</body>
</html>
運行到后面想打開百度網站,最后還是跳出慕課網,該怎么改寫代碼實現對其他網站的調用
2019-09-03
那我就不太懂了
2019-09-02
<!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 ope = confirm("是否打開網站");
if (ope) {
var url = prompt("你要打開的網址是:", "http://www.xianlaiwan.cn")
if (url !=null)
{
window.open('http://www.xianlaiwan.cn', 'width=400,height=500,menubar=no,toolbar=no');
} else
{
var ano = confirm("是否打開別的網站?");
if (ano==true)
{
var net = prompt("請輸入你要打開的網站!","http://www.baidu.com");
window.open('http://www.baidu.com', 'width=400,height=500,menubar=no,toolbar=no');
}
}
}
}
</script>
</head>
<body>
<input type="button" value="新窗口打開網站" onclick="openWindow()" />
</body>
</html>
2019-09-02
可能代碼寫多了,簡單來說我想實現的是在prompt消息框內輸入我想打開的網站比如百度,就彈出百度網站這個功能,而不是在window.open里寫好了url來打開這個網站。