我想在鼠标悬停或悬停时显示日期,现在是onclick,我使用工具提示显示数据但我想在鼠标悬停时显示数据,我尝试了很多但没有成功?任何机构都可以提供帮助,将不胜感激,在此先感谢。
这是我的代码,它想在点击时更改为 mouseiver/hover。
<script>
$(".ajax_link").click(function(e) {
e.preventDefault(); //Stops link from changing the page
var link = $(this).attr('href'); //Gets link url
$.ajax({ //Make the ajax request
url: link,
cache: false
}).done(function( html ) { //On complete run tooltip code
//Display tooltip code goes here, returned text is variable html
.done(function( html ) {
alert("text: " + html);
});
});
});
</script>