今天我們來學習如何使用jQuery返回class的id。
$(document).ready(function(){ $("button").click(function(){ var id = $(this).attr("class"); alert(id); }); });
上述代碼展示了在點擊按鈕時如何獲取它的class,并將該class賦予一個變量中,最后通過alert彈窗展示出來。
除此之外,我們還可以使用jQuery的each()函數來遍歷每個class,獲取它的id,并將id添加到元素中。
$(document).ready(function(){ $(".myclass").each(function(){ var id = $(this).attr("id"); $(this).text("This element's id is " + id); }); });
上述代碼展示了如何遍歷所有.myclass的元素,獲取它們的id,并將id添加到元素中。
通過學習如何使用jQuery返回class的id,我們可以更加方便地操作元素,提高開發效率。
上一篇html監控服務器代碼
下一篇html盒子內邊框代碼