分享下自己的代碼
?function openWindow(){
? ? ? ? ?// 新窗口打開時彈出確認(rèn)框,是否打開;點取消時無任何操作,那么mymessae為false的分支就不用寫
? ? ? ? ?var mymessage=confirm("是否打開?");
? ? ? ? ?if(mymessage==true){
? ? ? ? ? ? ?//通過輸入對話框,確定打開的網(wǎng)址,默認(rèn)為 http://idcbgp.cn/
? ? ? ? ? ? ?var web=prompt("請輸入URL地址", "http://idcbgp.cn/");
? ? ? ? ? ? ?if(web!=null && web!=""){
? ? ? ? ? ? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
? ? ? ? ? ? ?window.open(web,'_blank','width=400,height=500,menubar=no,toolbar=no')
? ? ? ? ? ? ?}
? ? ? ? ? ? ?else{
? ? ? ? ? ? ? ? alert("URL不能為空!");
? ? ? ? ? ? ?}
? ? ? ? ?}
? ? }
2020-09-06
注意這里??if(web!=null && web!="")