在jQuery中,使用相同的类设置spans来显示:inline from:block

时间:2008-11-15 11:10:56

标签: jquery

使用jQuery,有没有办法选择引用特定css类的所有标记,并将显示设置为“内联”?

示例:

<span class="theclass">junk</span>
<span class="theclass">other junk</span>
<span class="theclass">more junk</span>

在.css:

.theclass {
    display: none;
}

1 个答案:

答案 0 :(得分:5)

$(".theclass").css("display", "inline");

或者

$(".theclass").show();