我想知道是否可以从 mouseleave 函数触发 ajax 请求?我希望在鼠标离开时发送字符串“Y”,li
以便可以在数据库中更新它。
这有可能吗?
(function(){
$('li#myId').mouseenter(function(){
var y = 'Y';
}).mouseleave(function(){
$.ajax({
type: 'POST',
url: 'update.php',
data: 'y='+y,
success: function(response){
$('li.#myId').html(response);
}
});
});
})();