var imgElements = document.getElementsByTagName(‘img‘);
for (let imgElement of imgElements) {
//1.如果有style属性,去掉style属性中的width属性和height属性
if (imgElement.hasAttribute(‘style‘)) {
// 获取style属性的值
var styleValue = imgElement.getAttribute(‘style’);
// 使用正则表达式去掉width和height属性
var updatedStyleValue = styleValue.replace(/(widths*:s*d+s*pxs*;?|heights*:s*d+s*pxs*;?)/gi, ”);
// 更新img标签的style属性
imgElement.setAttribute(‘style’, updatedStyleValue);
}
//2.如果有height属性,去掉img中的height属性
if (imgElement.hasAttribute(‘height’)) {
// 去掉height属性
imgElement.removeAttribute(‘height’);
}
//3.设置img中的width属性
imgElement.setAttribute(‘width’,’100%’)
}
原文地址:https://blog.csdn.net/m0_65730686/article/details/134754680
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若转载,请注明出处:http://www.7code.cn/show_29878.html
如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱:suwngjj01@126.com进行投诉反馈,一经查实,立即删除!