logo

网站内容图片高度移除js方法

2025-02-07 点击 78
网站内容图片高度移除js方法。
<div id="delheight">
<img style="width:100%;height:99px;" src="/yourimage.png"/>
<img src="/yourimage.png" height="99"/>
</div>
<script type="text/javascript"> 
  window.onload = function() {
    var imgs = document.querySelectorAll("#delheight img");
    imgs.forEach(function(img) {
      // 移除height属性
      if (img.hasAttribute('height')) {
        img.removeAttribute('height');
      }
      // 从style属性中移除height样式
      if (img.style.height) {
        img.style.height = '';
      }
    });
  }
</script>

0%