1

我是 jquery 的新手,我想知道当光标在输入元素/标签之外/离开时如何获取输入标签的值。先感谢您。

4

3 回答 3

13

使用模糊事件

 $(function() {
    $('input[type="text"]').on('blur' , function() {
        // Your code here
    });
  });

检查演示

于 2012-10-03T02:51:43.603 回答
4

我认为您正在搜索的方法是focusout

$(function() {
    $('#input-element').focusout(function() {
        // put your code here!
    });
});

我希望它有所帮助。

于 2012-10-03T02:55:32.467 回答
1
<form>
  <input id="target" type="text" value="Field 1" />
  <input type="text" value="Field 2" />
</form>
<div id="other">
  Trigger the handler
</div>
<script>

$('#target').blur(function() {
  alert('Handler for .blur() called.');
});
于 2012-10-03T02:59:10.893 回答