na li cuo le ?
?function openWindow(){
??????? var m=confirm("Are you sure?");
??????? if(m==ture)
??????? {
??????????? var n=prompt("通過輸入對話框,確定打開的網址","http://www.xianlaiwan.cn/");
???????? ?
??????????????? if(n!=null)
?????? ?
?????????? { window.open(n,"_blank","width=400px,height=500px,menubar=no,toolbar=no");
?????????? }
?????????? ?
?????????? ?
??????????? else
?????????? ?
?????????????? { alert("wu");}
?????????????? ?
?????????????? ?
??????? }
??????? else
??????????????? {? alert("wu");}
??? }
2016-03-23
拼寫錯誤應該是“true”
2016-03-23
var m=confirm("Are you sure?");
? ? ? ? if(m)
? ? ? ? {
? ? ? ? ? ? var n=prompt("通過輸入對話框,確定打開的網址","http://www.xianlaiwan.cn/");
? ? ? ? ? ? if(n)
? ? ? ? ? ?{ window.open('http://www.xianlaiwan.cn','_blank','width=400px,height=500px,menubar=no,toolbar=no');
? ? ? ? ? ?}
? ? ? ? ? ? else
? ? ? ? ? ? { alert("wu");} ??
? ? ? ? }
? ? ? ? else
? ? ? ? { ?alert("wu");}
2016-03-23
? ? function openWindow()
? ? {
? ? ? ? // 新窗口打開時彈出確認框,是否打開
? ? ? ? var newWindow =confirm("打開新窗口?"); ? ?
? ? ? ? if(newWindow)
? ? ? ? {
? ? // 通過輸入對話框,確定打開的網址,默認為
? ? ? ? ? ? ?var m = prompt("請輸入網址:","這是默認網址!"); ? ?
? ? ? ? ? ? ?if(m)
? ? ? ? ? ? {
? ? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄
? ? ? ? ? ? ? ? window.open("www.baidu.com","new_window","winth=400px,height=500px, menubar=no, toolbar=no"); ? ?
? ? ? ? ? ? }
? ? ? ? ? ? else
? ? ? ? ? ? {
? ? ? ? ? ? ? ? alert("打開失??!");
? ? ? ? ? ? }
? ? ? ? }
? ? ? ? else
? ? ? ? {
? ? ? ? ? ? alert("你選擇了取消!");
? ? ? ? } ? ?
? ? }
? </script>?
2016-03-23
true,,,,,,不是ture
2016-03-23
confirm默認確定返回true,取消返回false。判斷的時候條件為true,就會導致你確定和取消都會返回true