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

JavaScript 遊標聚焦事件(onfocus)

遊標聚焦事件(onfocus)


#當網頁中的物件獲得聚點時,執(zhí)行onfocus呼叫的程式就會被執(zhí)行。

如下程式碼, 當遊標移到文字方塊內時,即焦點在文字方塊內,觸發(fā)onfocus 事件,並呼叫函數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("請輸入真實姓名")
            } 
        </script>
    </head>
    <body>
        <form>
            姓名:
            <input name="username" type="text" value="請輸入姓名" onfocus="fun()" >
        </form>
    </body>
</html>


#
繼續(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("請輸入真實姓名") } </script> </head> <body> <form> 姓名: <input name="username" type="text" value="請輸入姓名" onfocus="fun()" > </form> </body> </html>