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

JavaScript文字方塊內(nèi)容改變事件(onchange)

文字方塊內(nèi)容改變事件(onchange)


#透過改變文字方塊的內(nèi)容來觸發(fā)onchange事件,同時執(zhí)行被呼叫的程式。

如下程式碼,當(dāng)使用者將文字方塊內(nèi)的文字改變後,彈出對話方塊「您剛剛修改了個人簡介」。

<!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>
            個性介紹:<br/><textarea name=" introduction" cols="30" rows="4" onchange="fun()">小明:
            PHP高級工程師
            全棧工程師</textarea>
        </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("您剛剛修改了個人簡介") } </script> </head> <body> <form> 個性介紹:<br/><textarea name=" introduction" cols="30" rows="4" onchange="fun()">小明: PHP高級工程師 全棧工程師</textarea> </form> </body> </html>