為什么加了 function openWindow()就不會(huì)直接跳出窗口
沒加的話會(huì)直接跳出窗口;加了function openWindow(),點(diǎn)擊button才會(huì)跳出窗口,function不是是多條命令打包的功能嗎?
?function openWindow()
{var open=confirm("確認(rèn)新建窗口打開網(wǎng)站嗎?");
if(open==true)
? ? // 新窗口打開時(shí)彈出確認(rèn)框,是否打開
{var url=prompt("通過輸入對(duì)話框,確定打開的網(wǎng)址","http://idcbgp.cn");
if(url!=null)
? ? // 通過輸入對(duì)話框,確定打開的網(wǎng)址,默認(rèn)為 http://idcbgp.cn/
{window.open(url,"_blank",'width=400px,height=500px,menubar=no,toolbar=no'); ? ?
}
? ? //打開的窗口要求,寬400像素,高500像素,無菜單欄、無工具欄。
else
{alert("再見!");}
} ??
else
{alert("再見!");}
? ? }
2016-12-21
仔細(xì)看function那篇,那篇講了function 定義函數(shù)后不能直接運(yùn)行,要調(diào)用后才運(yùn)行。接著就是在按鈕那邊設(shè)置了 點(diǎn)擊(onclick)就調(diào)用函數(shù)。
2016-12-21
如果你學(xué)過C語言你就更容易明白,其實(shí)大部分語言都有這個(gè)特點(diǎn),簡單的說就是,函數(shù)function先定義,定義了以后需要調(diào)用才能運(yùn)行。就好像你做好了一個(gè)汽車零件,但是在造汽車的時(shí)候不把它拿出來,那他還在那里,沒有用,大家也不知道他!
2016-12-21
定義函數(shù)需要調(diào),比如點(diǎn)擊事件。
2016-12-21
這里的function openwindow()是按鈕button的點(diǎn)擊事件函數(shù),也就是只有你在點(diǎn)擊按鈕button時(shí)函數(shù)openwindow才會(huì)運(yùn)行