第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如果圖像的高度大于寬度,則隱藏圖像

如果圖像的高度大于寬度,則隱藏圖像

瀟瀟雨雨 2023-09-04 16:02:42
我的頁面中有很多圖片,我想隱藏那些高度大于寬度的圖片。我嘗試使用這個(gè)簡單的代碼,但它不起作用。超文本標(biāo)記語言<img src="/path/img_1" class="my_pictures_class"><img src="/path/img_2" class="my_pictures_class"><img src="/path/img_3" class="my_pictures_class"><img src="/path/img_4" class="my_pictures_class"><img src="/path/img_5" class="my_pictures_class">...JSwindow.onload = function() {   var i, img;   var img = document.getElementsByClassName("my_pictures_class");    for (i = 0; i < img.length; i++) {     var width = img.clientWidth;     var height = img.clientHeight;     if (height>width){       img[i].style.display = "none";     }     else{        //Nothing     }   }};我無法使用 Jquery。
查看完整描述

2 回答

?
揚(yáng)帆大魚

TA貢獻(xiàn)1799條經(jīng)驗(yàn) 獲得超9個(gè)贊

您忘記了圖像數(shù)組的索引


window.onload = function() {

  var i, img;

  var img = document.getElementsByClassName("my_pictures_class");

  for (i = 0; i < img.length; i++) {

    var width = img[i].clientWidth;

    var height = img[i].clientHeight;

    if (height > width) {

      img[i].style.display = "none";

    }

  }

};

考慮每個(gè)


const imgList = document.getElementsByClassName("my_pictures_class");

Array.from(imgList).forEach(img => {

  const height = img.clientHeight

  const width = img.clientWidth

  if (height > width) {

    img.style.display = "none";

  }

})


查看完整回答
反對 回復(fù) 2023-09-04
?
夢里花落0921

TA貢獻(xiàn)1772條經(jīng)驗(yàn) 獲得超6個(gè)贊

您錯(cuò)過了提及索引。盡管您可以通過使用querySelectorAll()and來避免使用索引forEach(),如下所示:


window.onload = function() {

   var imgList = document.querySelectorAll(".my_pictures_class");

   imgList.forEach(function(img){

     var width = img.clientWidth;

     var height = img.clientHeight;

     if (height>width){

       img.style.display = "none";

     }

     else{

        //Nothing

     }

   });

};

<img src="https://homepages.cae.wisc.edu/~ece533/images/cat.png" class="my_pictures_class">

<img src="https://homepages.cae.wisc.edu/~ece533/images/airplane.png" class="my_pictures_class">

<img src="https://homepages.cae.wisc.edu/~ece533/images/arctichare.png" class="my_pictures_class">

<img src="https://homepages.cae.wisc.edu/~ece533/images/serrano.png" class="my_pictures_class">

<img src="https://homepages.cae.wisc.edu/~ece533/images/boat.png" class="my_pictures_class">



查看完整回答
反對 回復(fù) 2023-09-04
  • 2 回答
  • 0 關(guān)注
  • 178 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號