溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

jQuery操作基本操作一學(xué)習(xí)筆記

發(fā)布時間:2020-06-30 14:58:04 來源:網(wǎng)絡(luò) 閱讀:425 作者:知止內(nèi)明 欄目:web開發(fā)

基本選擇

用法 描述
$(“#elementID”) #表示根據(jù)id查找;查找id為elementID的元素;建議的用法。所以一般推薦給標(biāo)簽設(shè)置ID。
類似:
document.getElementById("elementID") 但兩者之間返回類型不同

$(“.className”) .表示根據(jù)class樣式名稱查找;查找樣式名稱為className的所有標(biāo)簽

$(“input”) 查找所有input標(biāo)簽

基本取/設(shè)值

用法 描述
$(“#elementID”).val()
$(“#elementID”).val(“新值”)
分別表示取值和設(shè)置值
$(“#elementID”).html()
$(“#elementID”).html(“新值”)
分別表示獲取標(biāo)簽內(nèi)部的html文本內(nèi)容和設(shè)置html文本內(nèi)容。類似innerHTML
$(“#elementID”).text()
$(“#elementID”).text(“新值”)
分別表示獲取標(biāo)簽內(nèi)部的純文本內(nèi)容和設(shè)置純文本內(nèi)容。
$(“#elementID”).attr(“name”)
$(“#elementID”).attr(“name”,”itcast”)
attr為獲取對應(yīng)屬性的值或設(shè)置對應(yīng)屬性的值。如果遇上具有 true 和 false 兩個屬性的屬性,如 checked, selected 或者 disabled 則使用prop()

<meta charset="UTF-8">
    <title>01_basic.html</title>
    <!--<script type="text/javascript" th:src=@{"js/jquery-3.3.1.js}"></script>-->
    <script src="../../static/js/jquery-3.3.1.js"></script>
    <script type="text/javascript">
        $(document).ready(function(){
            $("#btn1").click(function(){
                alert($("#div1").html());
            });
            $("#btn2").click(function(){
                alert($(".divClass").text());
                });
            $("#btn3").click(function(){
                alert($("#div1").attr("title"));
            });
            $("#btn4").click(function(){
                alert($("input").length);
            });
            $("#btn5").click(function(){
                $("#div1").html("div內(nèi)容修改!!");
            });
            $("#btn6").click(function(){
                alert("div的內(nèi)容:"+$("#div1").text() + ",span的內(nèi)容:" + $("span").text())
            });

        });
    </script>
    <style>
    .divClass{
        text-align: center;
        width: 100%;
    }
    </style>
</head>

<body>
<div id="div1" class="divClass" title="div 的 title屬性值">
    <p>div 的內(nèi)容</p>
</div>
        <br><br>
        <input type="text" value="輸入框1"><br>
        <input type="text" value="輸入框2"><br><br>
        <span>這是span的信息</span><br>

        <input type="button" value="1#獲取div里面的Html內(nèi)容" id="btn1">
        <br><br>
        <input type="button" value="2.獲取div里面的純文本內(nèi)容" id="btn2">
        <br><br>
        <input type="button" value="3#獲取div里面的title屬性的值" id="btn3">
        <br><br>
        <input type="button" value="4獲取input的個數(shù)" id="btn4">
        <br><br>
        <input type="button" value="5改變div里面的值" id="btn5">
        <br><br>
<input type="button" value="同時獲取div和span" id="btn6">
<br><br>
向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI