- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
以下代码可以很好地找到保存在标签字段中的价格值。但是我需要在文本区域中保存数量,但它不起作用。
有什么想法吗?
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/
我是一名优秀的程序员,十分优秀!