JQuery 和内联&外部CSS

发布于 2024-12-29 17:18:18 字数 473 浏览 0 评论 0原文

删除属性

$('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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

网白 2025-01-05 17:18:18

如果你这样做

$('img').css('height', '');

,jQuery 将从元素中删除 height 样式

如果已直接应用该属性,则从元素中删除该属性,无论是在 HTML 样式属性中

If you do

$('img').css('height', '');

jQuery will remove the height style from the element

removes that property from an element if it has already been directly applied, whether in the HTML style attribute

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文