confirm消息確認(rèn)
?function Wopen(){
? ? var xinbox=confirm("是否新建窗口?");
? ? if(xinbox==true)
? ? {
? ? ? ? var ttcaa=prompt("請(qǐng)輸入網(wǎng)址","http://idcbgp.cn");
? ? ? ? if(ttcaa=="http://idcbgp.cn"){ ? ?
? ? ? ? ? ? window.open(ttcaa,'_blank','width=600,height=500,left=100,top=100')
? ? ? ? }
? ? ? ? else{
? ? ? ? alert("你為啥不打開(kāi)慕課網(wǎng)?");
? ? ? ? }
? ? }
? ? else{
? ? ? ? alert("你沒(méi)有打開(kāi)窗口!");
? ? }
}
這個(gè)運(yùn)行是否開(kāi)新窗口,我點(diǎn)擊取消,可還是讓我輸入網(wǎng)址的
2017-03-10
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>confirm</title>
?<script type="text/javascript">
?function Wopen()
?{
? ? ?var mychar =confirm("是要打開(kāi)新的窗口嗎");
? if(mychar==true)
? {
? ? ? var ttcaa=prompt("請(qǐng)輸入網(wǎng)址","http://idcbgp.cn");
? ? ? document.write(ttcaa);
? ? ? ?if(ttcaa=="http://idcbgp.cn"){ ? ?
? ? ? ? ? ? window.open(ttcaa,'_blank','width=600,height=500,left=100,top=100')
? ? ? ? }
? ? ? ? else{
? ? ? ? alert("你為啥不打開(kāi)慕課網(wǎng)?");
? ? ? ? }
? }
? else
? {
? ? ? alert("你沒(méi)有打開(kāi)窗口!");
? }
?}
? </script>
</head>
<body>
? ? <input name="button" type="button" onClick="Wopen()" value="點(diǎn)擊我,彈出確認(rèn)對(duì)話框" />
</body>
</html>
點(diǎn)擊取消是無(wú)法輸入的,你是不是調(diào)用的地方函數(shù)寫(xiě)的不對(duì)
2017-03-10
把prompt括號(hào)里面的 ? ?,"http://idcbgp.cn"去掉就可以了,只留下prompt(“請(qǐng)輸入你的網(wǎng)址:”)
然后在彈出框里面輸入愛(ài)慕網(wǎng)的網(wǎng)址,這個(gè)是沒(méi)有問(wèn)題,能正常執(zhí)行
你在前面prompt加入了,相當(dāng)于默認(rèn)了這個(gè)網(wǎng)址,那么在下面就直接判斷條件就可以了,我是這么理解的。。
2017-03-10
寫(xiě)的沒(méi)問(wèn)題,可能是你修改后沒(méi)提交
2017-03-10
樓上正解
2017-03-10
?function Wopen(){
? ? var xinbox=confirm("是否新建窗口?");
? ? if(xinbox==true)//這個(gè)括號(hào)有問(wèn)題是中文的,改回來(lái)就好了
? ? {
? ? ? ? var ttcaa=prompt("請(qǐng)輸入網(wǎng)址","http://idcbgp.cn");
? ? ? ? if(ttcaa==null||ttcaa==" "){//這樣做判斷
? ? ? ??alert("你為啥不打開(kāi)慕課網(wǎng)?");? ??
? ? ? ? }
? ? ? ? else{
? ? ? ? window.open(ttcaa,'_blank','width=600,height=500,left=100,top=100')
? ? ? ? }
? ? }
? ? else{
? ? ? ? alert("你沒(méi)有打開(kāi)窗口!");
? ? }
}
2017-03-10
ttcaa是一個(gè)Bool型變量,應(yīng)該是if(ttcaa == true)