国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

JavaScript 遊標(biāo)聚焦事件(onfocus)

遊標(biāo)聚焦事件(onfocus)


#當(dāng)網(wǎng)頁中的物件獲得聚點(diǎn)時(shí),執(zhí)行onfocus呼叫的程式就會(huì)被執(zhí)行。

如下程式碼, 當(dāng)遊標(biāo)移到文字方塊內(nèi)時(shí),即焦點(diǎn)在文字方塊內(nèi),觸發(fā)onfocus 事件,並呼叫函數(shù)fun()。

<!DOCTYPE HTML>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
        <title>php.cn</title>
        <script>
            function fun(){
                window.alert("請(qǐng)輸入真實(shí)姓名")
            } 
        </script>
    </head>
    <body>
        <form>
            姓名:
            <input name="username" type="text" value="請(qǐng)輸入姓名" onfocus="fun()" >
        </form>
    </body>
</html>


#
繼續(xù)學(xué)習(xí)
||
<!DOCTYPE HTML> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <title>php.cn</title> <script> function fun(){ window.alert("請(qǐng)輸入真實(shí)姓名") } </script> </head> <body> <form> 姓名: <input name="username" type="text" value="請(qǐng)輸入姓名" onfocus="fun()" > </form> </body> </html>
提交重置程式碼