0

如何在模糊中触发当前输入的 jQuery POST。

onblur="$.post(url,this.value)"?

4

2 回答 2

6

您可以使用.blur()blur事件处理程序绑定到input您想要的 's,然后简单地$.post()使用元素的s 调用value

$("input").blur(function () {
  $.post('url', { name: this.value });
});
于 2012-09-05T17:20:05.583 回答
1

您可以发送 ajax 发布请求来完成您的任务。

$("input").blur(function () {
   $.ajax({
        type: 'POST',
        url: 'url',
        dataType: 'json',
        data: { 'value' : $(this).val() },
        success : function(result){
        }
    });
});
于 2012-09-05T17:37:04.577 回答