為什么輸入網(wǎng)址的時候,如果把默認(rèn)的網(wǎng)址清空點確定或者是點取消不會彈出來警告“請輸入網(wǎng)址!”
<!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 reply =confirm("是否打開");
? ? ? ? if(reply==true){
? ? ? ? ? ? var url = prompt("輸入要打開的網(wǎng)站","http://idcbgp.cn/");
? ? ? ? ? ? if(url!=""||url!=null){
? ? ? ? ? ? window.open(url,'_blank','width=400,height=500,menubar=no,toolbar=no');
? ? ? ? ? ? }else{
? ? ? ? ? ? ? ? alert("請輸入網(wǎng)址!");
? ? ? ? ? ? }
? ? ? ? }else{
? ? ? ? ? ? alert("打開新網(wǎng)站失?。?)
? ? ? ? }
? ? }
? </script>?
?</head>?
?<body>?
? <input type="button" value="新窗口打開網(wǎng)站" onclick="openWindow()" />?
?</body>
</html>
2019-01-31
function openWindow(){
var reply =confirm("是否打開");
if(reply==true){
var url = prompt("輸入要打開的網(wǎng)站","http://idcbgp.cn/");
if(url=="http://idcbgp.cn/"){
window.open(url,'_blank','width=400,height=500,menubar=no,toolbar=no');
}else if(url == "" || url == null){
alert("請輸入網(wǎng)址!");
}
}else{
alert("打開新網(wǎng)站失??!")
}
}
你這樣改一下試試吧