从 css class 中删除宽度属性

Remove width attribute from css class

有什么方法可以使用 jquery 或 javascript.

在 css class 中显示 remove width attribute
table.searchlistTable {
    border-collapse: collapse;
    margin: 0;
    padding: 0;
    width: 100%;
}

注意: 有没有其他的解决方案而不是下面的。

$("table.searchlistTable").removeClass("searchlistTable");
$("table.searchlistTable").addClass("xyz");

谢谢。

更新样式 class any 属性 不可行,但您可以使用 jquery css() 函数覆盖样式 any 属性,它也可以以相同的方式工作,例如你想删除 width 然后你可以使用 auto 属性,请参见下面的示例代码

 $("table.searchlistTable").css("width", 'auto');
$(".searchlistTable").css('width' , 'auto')

$(".searchlistTable").css('width' , 'initial')

Safe CSS Defaults
The inherit, initial, and unset values