gpt4 book ai didi

javascript - 更改 JavaScript 中的文本框值

转载 作者:行者123 更新时间:2023-12-02 17:13:53 26 4
gpt4 key购买 nike

我想更新文本框的值,我从其中获取初始值以将产品添加到购物车。现在我正在应用舍入函数并且我想更新文本框的值,这是因为我正在使用ajax并且如果我应用舍入函数,用户必须知道系统如何计算所有内容。

这是我的简单代码:

<script>
$(document).ready(function(){
$(document).delegate('.purchasenow','click', function(e){
var buynow=this;
var productid = $(this).attr('id');
var quantity = $('.quo_'+productid).val();
var quantity = Math.round(quantity);
alert(quantity); //This gives the value
$('.quo_'+productid).value = quantity; //This is not working
});
});

谁能告诉我为什么它不起作用吗?很简单,但我找不到原因。

最佳答案

你试过吗

$('.quo_'+productid).val(quantity);

jQuery 选择器返回一个包装对象,而不是实际的 DOM 元素。我不认为包装对象具有 .value 属性

关于javascript - 更改 JavaScript 中的文本框值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24603292/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com