//HTML脚本 <spandata-helperinfo="PortfolioTeam"class="icon help"></span> //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 = "<span class='bubble'>" + varContent + "</span>";//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");
위 내용은 on을 사용하여 mouseleave 이벤트와 mouseenter 이벤트를 바인딩하여 마우스 호버 이벤트를 구현하는 jquery 분석 예의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!