如何使用 jQuery 选择所有应用了特定 CSS 属性的元素?例如:
.Title
{
color:red;
rounded:true;
}
.Caption
{
color:black;
rounded:true;
}
如何按名为“rounded”的属性进行选择?
CSS 类名非常灵活。
$(".Title").corner();
$(".Caption").corner();
如何将这两个操作替换为一个操作。也许是这样的:
$(".*->rounded").corner();
有没有更好的方法来做到这一点?