使用jQuery,有没有办法选择引用特定css类的所有标记,并将显示设置为“内联”?
示例:
<span class="theclass">junk</span>
<span class="theclass">other junk</span>
<span class="theclass">more junk</span>
在.css:
.theclass {
display: none;
}
答案 0 :(得分:5)
$(".theclass").css("display", "inline");
或者
$(".theclass").show();