您好,登錄后才能下訂單哦!
用法 描述
$(“#elementID”) #表示根據(jù)id查找;查找id為elementID的元素;建議的用法。所以一般推薦給標(biāo)簽設(shè)置ID。
類似:
document.getElementById("elementID") 但兩者之間返回類型不同
$(“.className”) .表示根據(jù)class樣式名稱查找;查找樣式名稱為className的所有標(biāo)簽
$(“input”) 查找所有input標(biāo)簽
用法 描述
$(“#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>
免責(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)容。