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.
基本上我正在maxLength动态添加到所有文本框,但我想为maxLength那些没有maxLength属性集的文本框添加默认值。
maxLength
如何使用 jquery、javascript 来完成这项工作?
这个怎么样:
if(!($("textbox").attr("maxLength"))){ $(this).attr("maxLength", "100"); }
你可以做这样的事情。
$(document).ready(function() { $('input').attr('maxlength','6'); });
这会将 maxlength 属性添加到所有输入字段