当前位置: 代码迷 >> JavaScript >> 求jquery写法,该怎么解决
  详细解决方案

求jquery写法,该怎么解决

热度:357   发布时间:2013-12-28 22:19:33.0
求jquery写法
 <input type id="ttt" name="ttt">  
当鼠标离开该输入框的时候调用js的某方法,进行ajax后台异步调用,求jquery写法

------解决方案--------------------
$("#ttt").on("mouseleave",function(){
alert("out");
});


类似这样。。

on方法的具体使用:http://api.jquery.com/on/
------解决方案--------------------
$(function(){
$('#ttt').blur(function(){
  $.ajax({url:'xxxxxxx',data:'v='+this.value,
success:function(){},
error:function(){}
})

})
});
  相关解决方案