如何删除宽度属性是风格atttribute使用jquery?

前端之家收集整理的这篇文章主要介绍了如何删除宽度属性是风格atttribute使用jquery?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<div class="views" style="position: relative; width: 421px; height: 15px; overflow: hidden;">
TEST TEXT
</div>

如何使用jquery删除style属性下的width属性

我知道removeAttr(“width”);

但它不会在这里工作,因为width是style属性的子元素

任何帮助将感激和感谢…

提前致谢..

解决方法

你可以使用
.css('width','auto')
原文链接:https://www.f2er.com/jquery/184365.html

猜你在找的jQuery相关文章