DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> 使用jQuery獲得內容以及內容的屬性
使用jQuery獲得內容以及內容的屬性
編輯:JQuery特效代碼     

代碼如下:
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <script src="js/jquery.js"></script>
    </head>
<style>
body{font-family: "微軟雅黑";width: 980px; margin: 0 auto; text-align: center;}
    .box{
        width: 300px;
        height: 300px;
        background: green;
        border: 1px solid #e6e6e6;
        line-height: 200px;
        position: absolute;
    }
button{
    border: none;
    background: green;   
    width: 125px;
    height: 50px;
    line-height: 50px;
    color: #fff;
    font-size: 16px;
    margin-top: 50px;
    font-family: "微軟雅黑";
    }
</style>
    <body>
        <button id="btn1">顯示text</button>
        <button id="btn2">顯示html</button>
        <button id="btn3">顯示輸入內容</button>
        <p id="text">這是要顯示<b>粗體</b>的節奏</p>
        <br />
        <input id="input" value="買房子">
        <script>
            $(document).ready(function(){
                $("#btn1").click(function(){
                    alert("Text: " + $("#text").text());
                });
                $("#btn2").click(function(){
                    alert("HTML: " + $("#text").html());
                });
                $("#btn3").click(function(){
                    alert("Value: " +$("#input").val());
                });
            });
        </script>
    </body>
</html>

Tips:

1、點擊事件節點的選擇 #botton

2、alert 的代碼規則  ("Value: " + $("#id").html)

今天的分享就先到這裡了,後續我們還將持續更新一些新的jQuery實例。

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved