Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在模糊中触发当前输入的 jQuery POST。
onblur="$.post(url,this.value)"?
onblur="$.post(url,this.value)"
您可以使用.blur()将blur事件处理程序绑定到input您想要的 's,然后简单地$.post()使用元素的s 调用value:
.blur()
blur
input
$.post()
value
$("input").blur(function () { $.post('url', { name: this.value }); });
您可以发送 ajax 发布请求来完成您的任务。
$("input").blur(function () { $.ajax({ type: 'POST', url: 'url', dataType: 'json', data: { 'value' : $(this).val() }, success : function(result){ } }); });