我使用过jQuery验证。并使用twitter bootstrap 2.3.2。单击“提交”按钮时将显示错误消息。如果我单击错误消息意味着文本框会聚焦。我怎么能失去焦点?
<input type="file" name="type1" id="type1">
<label for="type1">This field is required</label>
答案 0 :(得分:0)
您可以尝试以下方法:
$(function(){
$('input').blur();
});
答案 1 :(得分:0)
使用此:
<input type="file" name="type1" id="type1">
<label for="type1" onmousedown="return false;" onclick="return false;">This field is required</label>
onclick和onmousedown“return false;”将禁用默认的浏览器行为。