更改时更新属性值

发布于 2025-01-10 00:39:19 字数 590 浏览 1 评论 0原文

我有这个:

Qté:${quantity}

在每个产品的 html 中动态添加一辆购物车的。

当输入内部发生变化时,我希望该输入在“p”标签内和购物车内更新。 但现在可以说,当我用箭头更改数字或键入数字时,我想更新内部“p”标签和值。 value="${数量}" -->该代码表示​​获取该产品的数量(在购物车/本地存储中)并将其设置为默认值。

如果您明白我的意思,我希望更改后的值成为新的默认值。 我还需要它适用于所有产品,目前它仅适用于购物车的第一项。

现在我被困住了

const quantityBox = document.querySelector(".itemQuantity");   
      quantityBox.addEventListener("change", function () {
    //update value function   });

i have this:

<p>Qté : ${quantity}</p> <input type="number" class="itemQuantity" name="itemQuantity" min="1" max="100" value="${quantity}">being added dynamically in html for each product of a cart.

I want that input to update inside "p"tag and inside the cart when there a change inside this input.
But lets say for now that i want to update inside "p"tag and value when i change the number with arrow or type it.
value="${quantity}" --> that code is saying take the quantity for this product (in cart/localstorage) and set it to default.

i want the changed value to be the new default, if you know what i mean.
And i also need this to work for all the products, for now it only works with the first item fo the cart.

for now i'm stuck with

const quantityBox = document.querySelector(".itemQuantity");   
      quantityBox.addEventListener("change", function () {
    //update value function   });

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

三月梨花 2025-01-17 00:39:19

如果我正确理解你的问题,我认为你想要的是:

  1. 有很多产品,每个产品都有“p”用于显示数量,“input”用于更改数量。
  2. 当“input”标签值更改时,匹配的“p”标签文本也应该更改。

我认为你可以像这样使用 Element.previousElementSibling :

const quantityBox = document.querySelector(".itemQuantity");   
quantityBox.addEventListener("change", function (e) {
    const prevP = e.target.previousElementSibling;
    prevP.innerText = "Qté : " + e.target.value;
});

If I understood your problem correctly, I think what you want is:

  1. There are many products and each product has 'p' for display quantity and 'input' for change quantity.
  2. When 'input' tag value is changed, matching 'p' tag text should be changed, too.

I think you can use Element.previousElementSibling like this:

const quantityBox = document.querySelector(".itemQuantity");   
quantityBox.addEventListener("change", function (e) {
    const prevP = e.target.previousElementSibling;
    prevP.innerText = "Qté : " + e.target.value;
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文