jquery中利用on绑定mouseenter事件与mouseleave事件实现鼠标hover事件

//HTML脚本






//JS脚本

$(document).on({

mouseenter:function () {

var HelpMsgCode = $(this).attr("data-helperinfo");//Gets the current object property values

$.ajax({

type:"GET",

url:"/Portfolio/GetHelpMessageByCode",

//url: "/Subscription/GetHelpMessageByCode",

data: { Code: HelpMsgCode },

dataType:"json",

success:function (item) {

var varJson = $.parseJSON(item.data); //string Turn json

var varContent = varJson.Root.HelpMessage.Content; //Gets the specified JSON node contents

var varMsgHtml = "" + varContent + "";//Structural HTML

$(".icon.help").append(varMsgHtml);//Additional HTML to a specified location

}

});

},

mouseleave:function () { //When the mouse leaves, a prompt box disappears

$(".icon.help").html("");//Emptying the balloon

}

},".icon.help");




jquery中利用on绑定mouseenter事件与mouseleave事件实现鼠标hover事件_第1张图片

图片中原文地址:http://www.duanzhihe.com/599.html



你可能感兴趣的:(个人笔记)