window.open('A','_blank''); 這里的var A這樣用是錯的嗎
<!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 A = prompt("請輸入想打開的網站","http://www.xianlaiwan.cn/");
? ?window.open('A','_blank','width=400,height=500,menubar=no,toolbar=no');
}
? </script>?
?</head>?
?<body>?
?<input type="button" value="新窗口打開網站" onclick="openWindow()" />?
?</body>
</html>
2016-03-25
window.open('A','_blank','width=400');
A不能帶引號,去掉引號就行
window.open(A,'_blank','width=400,height=500,menubar=no,toolbar=no');
2016-03-25
你的http后面的那個":"用的是中文模式下的冒號,改成英文模式下的冒號就好了