close

 

l先下載 jQuery Library  jQuery Download

 

l接著將此 JS檔放進您網頁 HTML <head> </head> 之間
l<script type="text/javascript" src="jQuery檔案路徑"></script>


 


例:
<html>
    <head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script type='text/javascript' src='js/jquery-1.6.1.min.js'></script>
    </head>
<script>
$(document).ready(function(){
$("#prac1").click(function(){
alert("hello");
$("#assertResult").val("prac1 clicked");
});
});
</script>
    <body>
        <div>
            <button id="prac1" class="btn">
                prac1
            </button>
            <input type="text" id="assertResult" />
        </div>
    </body>

</html>

參考資料






 















其它文章

arrow
arrow

    PG Levin Li 發表在 痞客邦 留言(0) 人氣()