【js】加减号,关于属性值设置的一个小点

该文章展示了一个简单的HTML结构,包含两个按钮(加、减)和一个只读输入框,用于显示数字并允许用户增加或减少数值。JavaScript代码负责监听点击事件,更新输入框的值并根据条件禁用按钮。错误在于将`disabled=true`误写为`disabled=true`,导致功能失效。修复此问题后,按钮的禁用状态能正确根据数字范围更新。
摘要由CSDN通过智能技术生成
问题:

很简单的一个题,找了半天错误发现是把 disabled=true设置成disabled=“true” 了,忘了这是直接设置的属性值,设置style下的那些不加 ""会被当成变量。

原题:

做效果:
在这里插入图片描述

 div {
        width: 80px;
      }

      input[type="text"] {
        width: 50px;
        height: 44px;
        outline: none;
        border: 1px solid #ccc;
        text-align: center;
        border-right: 0;
      }

      input[type="button"] {
        height: 24px;
        width: 22px;
        cursor: pointer;
      }

      input {
        float: left;
        border: 1px solid #ccc;
      }
 <div>
      <input type="text" id="total" value="1" readonly />
      <input type="button" value="+" id="add" />
      <input type="button" value="-" id="reduce" />
      <script>
        const content = document.querySelector("#total");
        const inputs = document.querySelector("div");
        const add = document.querySelector("#add");
        const reduce = document.querySelector("#reduce");

        inputs.addEventListener("click", function (e) {
          if (e.target.id === "add") {
            content.value = Number(content.value) + 1;
            reduce.disabled = false;
            if (content.value >= 5) {
              add.disabled = true;
            }
          } else if (e.target.id === "reduce") {
            content.value = Number(content.value) - 1;
            add.disabled = false;
            if (content.value <= 0) {
              reduce.disabled = true;
            }
          }
        });
      </script>
    </div>
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

茄茄茄子eggplant

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值