為什么是打開(kāi)的http://yifanck.cn/code/yifanck.cn,問(wèn)題出在哪
<!DOCTYPE html>
<html>
?<head>
? <title> new document </title> ?
? <meta http-equiv="Content-Type" content="text/html; charset=gbk"/> ??
? <script type="text/javascript"> ?
? ? function openWindow(){
? ? // 新窗口打開(kāi)時(shí)彈出確認(rèn)框,是否打開(kāi)
? ? var newWindow=confirm("是否打開(kāi)網(wǎng)站?")
? ? // 通過(guò)輸入對(duì)話框,確定打開(kāi)的網(wǎng)址,默認(rèn)為 http://yifanck.cn/
? ? if(newWindow==true){
? ? ? ? var http=prompt("請(qǐng)輸入網(wǎng)址","http:yifanck.cn")
? ? //打開(kāi)的窗口要求,寬400像素,高500像素,無(wú)菜單欄、無(wú)工具欄。
? ? window.open(http,'_blank','width=400,height=500,menubar=no,toolbar=no') ? ?
? ? ? ? } ? ? ? ?
? ? } ??
? </script>?
?</head>?
?<body>?
?<input type="button" value="新窗口打開(kāi)網(wǎng)站" onclick="openWindow()" />?
?</body>
</html>?
2017-01-17
我也是 ?解決了么
2017-01-17
我開(kāi)始也出現(xiàn)了這個(gè)問(wèn)題 可能是JS的版本問(wèn)題,但是解決方法如下
? function openWindow(){
? ? ? ? var url = confirm("是否打開(kāi)新網(wǎng)頁(yè)");
? ? // 通過(guò)輸入對(duì)話框,確定打開(kāi)的網(wǎng)址,默認(rèn)為 http://yifanck.cn/
? ? ? ?if (url == true){
? ? ? ? ? ?var url = prompt("請(qǐng)輸入要打開(kāi)的網(wǎng)址:","yifanck.cn") ;?
? ? ? ? ? ?document.write(win);
? var html = "http://"+win ;
? document.write(html);
? ? ? ? ? ? window.open(html,'_blank','width= 400 height= 500','menubar =no','toolbar=no')
? ? }
前面加上一個(gè)http://? 再創(chuàng)建一個(gè)新的var ?就可以改變新窗口的路徑
2017-01-06
據(jù)我實(shí)驗(yàn),貌似是這樣。prompt已經(jīng)包括http告訴瀏覽器協(xié)議了,window.open后面如果再寫(xiě)網(wǎng)址就重復(fù)了。
2017-01-06
? ? function openWindow(){
? ? ? ? var msg=confirm("open new website?")
? ? ? ? var newwind="http://yifanck.cn/"
? ? ? ? if(msg==true){
? ? ? ? ? ? prompt("Key in the address: ", "yifanck.cn/");
? ? ? ? ? ? window.open(newwind, "_blank", "width=400px, height=500px, menubar=no, toolbar=no");
? ? ? ? }
}
2017-01-05
<script type="text/javascript"> ?
? ?function openWindow(){
? ? var s=confirm("確認(rèn)要打開(kāi)新網(wǎng)站嗎?"); ??
? ? if(s){window.open('http://yifanck.cn','_blank','width=400px,height=500px,menubar=no,toolbar=no')
? ?}? </script>
2017-01-03
地址寫(xiě)錯(cuò)了 。。。http://yifanck.cn? ?你少“//”了