點擊按鈕沒反應
?<script type="text/javascript"> ?
? ? function openWindow(){
? ? // 新窗口打開時彈出確認框,是否打開
? ? var open=confirm("確認打開新建窗口嗎?");
? ? // 通過輸入對話框,確定打開的網(wǎng)址,默認為 http://idcbgp.cn/
? ? if(open==true){
? ? ? ?var url=prompt("確認打開的窗口","http://idcbgp.cn/");
? ? ? ?if(url!=null){
? ? ? ? ? ?window.open(url,' _blank width=400px,height=500px','menubar=no,toolbar=no');
? ? ? ?}
? ? ? ?else{
? ? ? ? ? ?alert("歡迎再來");
? ? ? ?}
? ? }
? ? ?alert("歡迎再來");
? ? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
? ??
? ? }
2019-02-27
? function openWindow()
? {
????? var open=confirm("確認打開新建窗口嗎?");
????? if(open==true){
????? var url=prompt("確認打開的窗口","http://idcbgp.cn/");
????? if(url!=null)
????? {window.open(url," _blank",width=400,height=500,menubar="no",toolbar="no");}
????? }
????? else
????? { alert("歡迎再來");}
? }
??
?
2019-02-28
' _blank width=400px,height=500px','menubar=no,toolbar=no' ?這應該是兩個參數(shù),'_blank','width=400,height=500,menubar=no,toolbar=no'