我想在鼠標懸停或懸停上顯示日期,現在它是onclick,我已經使用工具提示來顯示數據,但我想在鼠標懸停上顯示數據,我嘗試了很多但沒有成功?任何機構都可以提供幫助,敬請期待。如何更改點擊鼠標懸停或通過jquery懸停?
這是我的代碼,它想克隆到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>
有沒有理由不能只使用.mouseover()? – Bernie 2013-03-08 05:40:08
只是改變.click到.hover – dakait 2013-03-08 05:41:30
你有沒有嘗試過使用'mouseenter()''mouseleave()'? – sweetamylase 2013-03-08 05:45:44