gpt4 book ai didi

javascript - Jquery 到纯 JS

转载 作者:行者123 更新时间:2023-11-30 07:54:44 25 4
gpt4 key购买 nike

我在 jquery 中有一些脚本,但我有一个问题,在页面上我没有使用 Jquery,这只是我需要的示例,它要复杂得多。

$('img').each(function(){ 
$(this).removeAttr('width');
$(this).removeAttr('height');
$(this).addClass('img-responsive');
});

它用于从图像中移动属性并添加类响应,因为用户使用了很多 TinyMce,默认情况下它会放置 witdh 和 height。我知道也许有一些用于 TinyMce 的插件,但我需要一些通用的解决方案

最佳答案

这应该可行,但您可能需要针对所有浏览器进行修改:

document.querySelectorAll('img').forEach(function (e) {
e.removeAttribute('width')
e.removeAttribute('height')
e.classList.add('img-responsive')
})

查看兼容性文档:

关于javascript - Jquery 到纯 JS,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43000249/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com