隨便寫寫。。。。。
function openWindow() ? ?{ ? ? ? ?var mymessage=prompt("是否打開新窗口?"); ? ? ? ?if(true) ? ? ? ?{ ? ? ? ? ? ?var win = window.open(mymessage,'_blank','height=600,width=400,top=100,left=0'); ? ? ? ? ? ?//alert(mymessage); ? ? ? ?} ? ? ? ?else ? ? ? ?{ ? ? ? ? ? ? ? ? ? ?} ? ?}
2017-06-30
判斷那里不是沒有作用了么,始終為真呢哥們
2017-06-30
<!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 boolen = confirm("是否打開確認框?");
? ? ? ? if(boolen == true)
? ? ? ? {
? ? ? ? ? ? // 通過輸入對話框,確定打開的網址,默認為 http://www.xianlaiwan.cn/
? ? ? ? ?var dialog = prompt("請輸入你要打開的網址:","http://www.xianlaiwan.cn/");
? ? ? ? ?if(dialog!=null)
? ? ? ? ?{
? ? ? ? ? ? ?//打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
? ? ? ? ? ? ?window.open(dialog,"_blank","width=400,height=500,menubar=no,toolbar=no");
? ? ? ? ?}
? ? ? ? }
? ? ? ? else
? ? ? ? {
? ? ? ? ? ? document.write("你已選擇不打開對話框,程序結束!");
? ? ? ? }
? ? ? ??
? ? }
? </script>?
?</head>?
?<body>?
?<input type="button" value="新窗口打開網站" onclick="openWindow()" />?
?</body>
</html>
2017-06-30
這樣不好
2017-06-30
function openWindow() {
? ? // 新窗口打開時彈出確認框,是否打開
?var opentag=confirm("是否在新窗口打開網站?");
?if(opentag==true)
? ? {
? ? ? var webadress=prompt("請輸入網址","http://www.xianlaiwan.cn/");
? ? // 通過輸入對話框,確定打開的網址,默認為 http://www.xianlaiwan.cn/
? ?if(webadress!=null)
? {?
? ? ? window.open(webadress,"_blank",'width=400,height=500,menubar=no,toolbar=no');
? }
? ?else
? ?{alert("結束");}
? ?
? ?}
? ? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
? else
{alert("結束");}
??
}