87,991
社区成员
发帖
与我相关
我的任务
分享$(function(){
$('#ttt').blur(function(){
$.ajax({url:'xxxxxxx',data:'v='+this.value,
success:function(){},
error:function(){}
})
})
});$("#ttt").on("mouseleave",function(){
alert("out");
});
类似这样。。
on方法的具体使用:http://api.jquery.com/on/