Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用Jquery查找输入元素的max属性中的值
<input type="number" id="pageNumber" class="toolbarField pageNumber" value="1" size="4" min="1" tabindex="7" max="29">
我试过了
$("input[max]").val()
但这没有帮助
您可以将attr()与id 选择器一起使用来获取 max 属性的值。
现场演示
$('#pageNumber').attr('max');
使用 attr() 查找属性的值
尝试这个
$(".toolbarField").attr("max");
或者
参考:
http://api.jquery.com/attr/
$("input").attr("max");
这将获取属性的值
请参阅 jQuery API 文档:http ://api.jquery.com/attr/