欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

html網(wǎng)頁怎么顯示對(duì)話框、確認(rèn)框、提示框?

1、打開文本編輯器或記事本程序,輸入<html><body>以及<head>標(biāo)簽。

<html>

<head></head>

<body></body>

</html>

2、在<head>頭標(biāo)簽后輸入<script>標(biāo)簽。

<scripttype=“text/javascript”>

</script>

3、在<script>標(biāo)簽中定義一個(gè)函數(shù)duihua()來使網(wǎng)頁彈出對(duì)話框。

functionduihua()

alert(“這個(gè)窗口是對(duì)話框!”)

4、然后,再定義一個(gè)函數(shù)命名為queren(),用來彈出確認(rèn)框。

functionqueren()

varse=confirm(“請(qǐng)選擇點(diǎn)擊一個(gè)按鈕!”);if(se==true)

{

alert(“你按下的是【確認(rèn)】”);

else

{

alert(“你按下的是【取消】”);

5、繼續(xù)定義另一個(gè)函數(shù)tishi(),用來在網(wǎng)頁中彈出提示框。

functiontishi()

{

vart=prompt(“請(qǐng)輸入您的名字”,“KING視界”)if(t!=null&&t!=“”)

{

document.write(“精彩MV就在,”+t+“!屬于你的世界”)

}

6、函數(shù)定義好以后,點(diǎn)擊<body>標(biāo)簽后,建立3個(gè)按鈕分別用來調(diào)用這3個(gè)函數(shù)執(zhí)行。<inputtype=“button”onclick=“duihua()”value=“點(diǎn)擊顯示對(duì)話框”/>

<inputtype=“button”onclick=“queren()”value=“點(diǎn)擊顯示確認(rèn)框”/>

<inputtype=“button”onclick=“tishi()”value=“點(diǎn)擊顯示提示框”/>

1,打開文本編輯器或記事本程序,輸入<html><body>以及<head>標(biāo)簽。

<html>

<head></head>

<body></body>

</html>

2,在<head>頭標(biāo)簽后輸入<script>標(biāo)簽

<scripttype="text/javascript">

</script>

3,在<script>標(biāo)簽中定義一個(gè)函數(shù)duihua()來使網(wǎng)頁彈出對(duì)話框。

functionduihua()

{

alert("這個(gè)窗口是對(duì)話框!")

}

4,然后,再定義一個(gè)函數(shù)命名為queren(),用來彈出確認(rèn)框。

functionqueren()

{

varse=confirm("請(qǐng)選擇點(diǎn)擊一個(gè)按鈕!");

if(se==true)

{

alert("你按下的是【確認(rèn)】");

}

else

{

alert("你按下的是【取消】");

}

}

5,繼續(xù)定義另一個(gè)函數(shù)tishi(),用來在網(wǎng)頁中彈出提示框。

functiontishi()

{

vart=prompt("請(qǐng)輸入您的名字","KING視界")

if(t!=null&&t!="")

{

document.write("精彩MV就在,"+t+"!屬于你的世界")

}

}

6,函數(shù)定義好以后,點(diǎn)擊<body>標(biāo)簽后,建立3個(gè)按鈕分別用來調(diào)用這3個(gè)函數(shù)執(zhí)行。

<inputtype="button"onclick="duihua()"value="點(diǎn)擊顯示對(duì)話框"/>

<inputtype="button"onclick="queren()"value="點(diǎn)擊顯示確認(rèn)框"/>

<inputtype="button"onclick="tishi()"value="點(diǎn)擊顯示提示框"/>

7,為了讓按鈕在一列顯示,分別在<input>標(biāo)簽后加上<br><br>換行符。最后保存代碼內(nèi)容為html格式,打開網(wǎng)頁預(yù)覽效果。