JQuery 和内联&外部CSS
删除属性
$('img').removeAttr('height');
我知道下面的 JQuery 将从图像标签中
<img src="images/abc.jpg" alt="Image 1" height="30px" width="30px" />
,但是如果 img 标签采用以下格式,我该如何做同样的事情呢?
<img src="images/abc.jpg" alt="Image 1" style="height:30px; width:30px;" />
如果 CSS 在外部文件中,如何执行相同的操作
<img src="images/abc.jpg" alt="Image 1" class="imgclass1" />
I know the following JQuery will remove an attribute from an image tag
$('img').removeAttr('height');
in
<img src="images/abc.jpg" alt="Image 1" height="30px" width="30px" />
But how can I do the same if the img tag in in the following format?
<img src="images/abc.jpg" alt="Image 1" style="height:30px; width:30px;" />
Also how to do the same if the CSS in in an external file
<img src="images/abc.jpg" alt="Image 1" class="imgclass1" />
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你这样做
,jQuery 将从元素中删除
height
样式If you do
jQuery will remove the
height
style from the element