歡迎大家來(lái)參考
<!DOCTYPE html>
<html>
?<head>
? <title>練習(xí)</title>??
? <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />? ?
? <script type="text/javascript">??
? ? ?function openWindow(){
? ? ? ? var pd=confirm("是否打開(kāi)新窗口");
? ? ? ? if(pd==true){
? ? ? ? var herf = prompt("請(qǐng)輸入你要打開(kāi)的網(wǎng)址,默認(rèn)是http://idcbgp.cn","http://idcbgp.cn");
? ? ? ? ? ?if(herf!="") {
? ?if(herf!=null){
? ? ? ? ? ? ? ?window.open(herf,"_blank","width=400,height=500,menubar=no,toolbar=no,scrollbars=yes");
? ?}
? ?else
? ?{
? alert("你取消了輸入");
? ?}
? }
? ? ? ? ? ? else{
? ? ? ? ? ? ? ? ?alert("輸入不能為空");
? ? ? ? }
}
else{
alert("你沒(méi)有選擇打開(kāi)新窗口");
}
}
? </script>?
?</head>?
?<body>?
? <input type="button" value="新窗口打開(kāi)網(wǎng)站" onclick="openWindow()" />?
?</body>
</html>
2019-05-08
這個(gè)!是什么作用
??if(herf!="") {
? ?if(herf!=null){
2019-05-07
如有錯(cuò)誤望指出