請問怎么做到打開我想要去的網址
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<script type="text/javascript">
function acc()
{
var hehe=confirm("確定打開窗口嗎?");
if(hehe==true)
{var haha=prompt("請輸入網址");
if(haha!=null)
{window.open("haha","_blank","width=300px,height=400px");}
else{}
}
else{}
}
</script>
<title>無標題文檔</title>
</head>
<input type="button" name="button" value="點我" onClick="acc()"/>
<body>
</body>
</html>
我在window.open那里的網址設置了一個變量哈哈。? 是我輸入的prompt的值。? 但是我輸入百度的網址結果找不到網址。請問怎樣才可以做到訪問我輸入的網址。 還是說window.open里的網址那里不可以使用變量?
2016-09-29
{window.open("haha","_blank","width=300px,height=400px");}
改成
{window.open(haha,"_blank","width=300px,height=400px");}
2016-09-29
window.open("haha","_blank","width=300px,height=400px");}改為:window.open("url","_blank","width=300px,height=400px");}就可以啦
2016-09-28
haha改成你想去的網站,要包括http
2016-09-28
你輸入的時候輸入:http://www.baidu.com