如何让脚本检查所有 “item__sizes” 的子元素数量并替换参数。

huangapple go评论66阅读模式
英文:

How to make the script check all "item__sizes" for the number of child elements and replace parameters

问题

const checkWidth = () => {
  const numberOfBtns = document.getElementsByClassName('item__sizes').childElementCount;
  const checker = document.querySelector('.item__checker');
  if (numberOfBtns === 2) {
     checker.style.width = "50%";
  }

  if(numberOfBtns === 1) {
     checker.style width = "100%";
  };

};
checkWidth();
英文:

I need the script to find all "item__sizes" elements and count the number of child elements. If there are 2, then the width of "item__checker" = 50%. If 1, then the width of "item__checker" = 100%.

HTML (PHP)

<?php if ($product_attributes): ?>
    <div id="item__sizes" class="item__sizes">
        <?php $is_first_item = true; ?>
        <?php foreach ($product_attributes as $attribute): ?>
            <?php
            $attribute_active_class = $is_first_item ? ' active' : '';
            ?>
            <button class="item__size js-item__sizes_btn js-btn-product-attribute<?php echo $attribute_active_class; ?>"
                data-product-attribute-price="<?php echo $attribute['price']; ?>"
                data-product-attribute-value="<?php echo $attribute['name']; ?>" type="button"><?php echo $attribute['name']; ?></button>
            <?php
            $is_first_item = false;
        endforeach;
        ?>
        <div class="item__checker"></div>
    </div>
<?php endif; ?>

JavaScript

const checkWidth = () => {
  const numberOfBtns = document.getElementsByClassName('.item__sizes').childElementCount;
  const checker = document.querySelector('.item__checker');
  if (numberOfBtns === 2) {
     checker.style.width = "50%";
  }

  if(numberOfBtns === 1) {
     checker.style.width = "100%";
  };

};
checkWidth();

答案1

得分: 0

问题是你只选择了一个item__sizes中的尺寸来进行测试。你需要遍历它们所有:

(function() {
    let buttons = document.querySelectorAll('.item__sizes');

    for (var i = 0; i < buttons.length; i++) {
        var buttonLength = buttons[i].querySelectorAll('.item__size').length;

        var checker = buttons[i].querySelector('.item__checker');

        if (buttonLength === 2) {
            checker.style.width = "50%";
        }
        if (buttonLength === 1) {
            checker.style.width = "100%";
        }
    }
})()
英文:

The problem is you are only selecting one of your item__sizes to do the test. You need to loop through all of them:

(function() {
    let buttons = document.querySelectorAll(&#39;.item__sizes&#39;);

    for (var i = 0; i &lt; buttons.length; i++) {
        var buttonLength = buttons[i].querySelectorAll(&#39;.item__size&#39;).length;

        var checker = buttons[i].querySelector(&#39;.item__checker&#39;);

        if (buttonLength === 2) {
            checker.style.width = &quot;50%&quot;;
        }
        if (buttonLength === 1) {
            checker.style.width = &quot;100%&quot;;
        }
    }
})()

huangapple
  • 本文由 发表于 2023年2月27日 05:05:15
  • 转载请务必保留本文链接:https://go.coder-hub.com/75575010.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定