您可以使用.blur()
将blur
事件处理程序绑定到您想要的input
,然后只需使用元素{{1}调用$.post()
}:
value
您可以发送ajax post请求来完成任务..
$("input").blur(function () {
$.ajax({
type: 'POST',
url: 'url',
dataType: 'json',
data: { 'value' : $(this).val() },
success : function(result){
}
});
});