當(dāng)前位置:軟件學(xué)堂 > 資訊首頁(yè) > 網(wǎng)絡(luò)編程 > 編程其他 > JavaScript消息對(duì)話框alert函數(shù)

JavaScript消息對(duì)話框alert函數(shù)

2012/11/27 21:21:45作者:佚名來(lái)源:網(wǎng)絡(luò)

移動(dòng)端

【實(shí)例介紹】

JavaScript消息對(duì)話框alert函數(shù)

這里向大家簡(jiǎn)單介紹一下JavaScript alert()函數(shù)的使用,alert彈出消息對(duì)話框,并且alert消息對(duì)話框通常用于一些對(duì)用戶的提示信息。

【基本語(yǔ)法】

alert(文本)

【語(yǔ)法介紹】

“文本”是要顯示在消息對(duì)話框中的文本。

【實(shí)例代碼】

<html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>無(wú)標(biāo)題文檔</title> </head> <body> <script type="text/javascript"> alert("Hello dreamdu!"); alert('Welcome to<br />dreamdu!'); alert('Welcome to\ndreamdu!'); </script> </body> </html>

【代碼分析】

在代碼中,加粗部分的標(biāo)記中第二個(gè)與第三個(gè)例子,只有第三個(gè)例子才能實(shí)現(xiàn)換行,如圖所示。

消息對(duì)話框運(yùn)行效果消息對(duì)話框運(yùn)行效果
                                  消息對(duì)話框運(yùn)行效果

【素材及源碼下載】

請(qǐng)點(diǎn)擊:JavaScript消息對(duì)話框alert函數(shù) 下載本實(shí)例相關(guān)素材及源碼

 

標(biāo)簽: JavaScript  消息  函數(shù)