亚洲区国产区激情区无码区,国产成人mv视频在线观看,国产A毛片AAAAAA,亚洲精品国产首次亮相在线

jQuery [attribute] 屬性選擇器

jQuer 選擇器

[ attribute ]選擇器用于選擇具有指定屬性的[attribute]元素。

語法:

$("[attribute]")

實(shí)例

選擇具有target屬性的每個(gè)元素:

$(document).ready(function(){
  $("[target]").css({"background":"green", "color":"white"});
});
測(cè)試看看?/?

參數(shù)值

參數(shù)描述
attribute指定要選擇的元素的屬性

jQuer 選擇器