我有一个这样的数字输入:
<input class="easyui-numberbox" data-options="precision:2,required:false" id="price3" name="price3" value="" />
但我无法通过以下方式获得输入值:
$("input[name=price3]").numberbox('getValue')
但我可以使用输入的ID属性获取输入值:
$("#price3").numberbox('getValue')
我应该为我的所有输入定义ID属性以使用EasyUI吗?
此致
答案 0 :(得分:0)
您也可以获取具有特定属性值的元素。在您的示例中尝试
$('input[numberboxname="price3"]').val()