我一直在寻找使jQuery自动使用html5验证将必需的内容写入我所有输入字段的方法,但是我很难告诉它在哪里编写它。
我要吃这个
<input type="text" name="first_name" value="" id="freeform_first_name"
maxlength="150">
并将它自动添加所需的结束标记前
<input type="text" name="first_name" value="" id="freeform_first_name"
maxlength="150" required>
我以为我可以按照
$("input").attr("required", "true");
但这是行不通的。任何帮助是极大的赞赏。
如果'input'是一个id,则jquery在这里的选择器中缺少#。
—
约翰·迈耶
@JohnMeyer“输入”是标签选择器。如果定位输入标签,则不需要#
—
-Spartacus
$(function(){....});