在chrome扩展中使用以下语句
<input type="text" id="sample" required>
不验证文本字段。这意味着如果我提交带有空字段的表单,则chrome扩展名不会指定“请填写此字段”。
我还添加了jquery语句$("input").prop('required',true);
,但它不起作用。这是什么问题?
答案 0 :(得分:2)
你可以试试这个
问题中的某些浏览器与我们直接使用必需的关键字“
时相同
<input type="text" id="sample" required="required">
或
您可以使用Bootstrap
创建文本框@ Html.TextBox(&#34; sample&#34;,null,new {@class =&#34; input-xlarge&#34;,type =&#34; text&#34;,required =&# 34;必需&#34;})
你可以放入jquery
new { required = sample.Empty}