gpt4 book ai didi

javascript - jquery 查找文本框

转载 作者:行者123 更新时间:2023-11-30 18:19:00 27 4
gpt4 key购买 nike

以下代码可以很好地找到保存在标签字段中的价格值。但是我需要在文本区域中保存数量,但它不起作用。

有什么想法吗?

Javascript:

 var price = parseInt(ui.draggable.find(".price").html().replace("$ ", ""));
var qty = parseInt(ui.draggable.find(".qty").html());

HTML:

<label class="price">$ 100</label>
<input name="qty_1" type="text" class="qty" id="qty_1" value="1" size="2" maxlength="2">

最佳答案

要设置/获取表单元素的值,应使用 val 方法而不是 html/text

var qty = parseInt(ui.draggable.find(".qty").val(), 10);

此外,您还应该在 parseInt 中指定 radix

parseInt(string[, radix])

radix: An integer that represents the radix of the above mentioned string. While this parameter is optional, always specify it to eliminate reader confusion and to guarantee predictable behavior. Different implementations produce different results when a radix is not specified.

关于javascript - jquery 查找文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12538371/

27 4 0
文章推荐: javascript - 在 iframe 中加载脚本
文章推荐: javascript - 异步 keyup 事件/如何短路顺序 keyup 事件以提高速度
文章推荐: javascript - 将鼠标悬停在文本上以打开图像
文章推荐: javascript - 使用 jquery 访问 iframe 的