单击bootstrap中的标签时,文本框不应该聚焦

时间:2014-03-07 12:35:59

标签: php jquery

我使用过jQuery验证。并使用twitter bootstrap 2.3.2。单击“提交”按钮时将显示错误消息。如果我单击错误消息意味着文本框会聚焦。我怎么能失去焦点?

<input type="file" name="type1" id="type1">
<label for="type1">This field is required</label>

2 个答案:

答案 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;”将禁用默认的浏览器行为。