gpt4 book ai didi

javascript - 如何通过 jquery 将点击更改为鼠标悬停或悬停?

转载 作者:行者123 更新时间:2023-11-30 07:41:53 25 4
gpt4 key购买 nike

我想在鼠标悬停或悬停时显示日期,现在是点击,我已经使用工具提示显示数据但我想在鼠标悬停时显示数据,我尝试了很多但没有成功?任何机构都可以提供帮助,将不胜感激,在此先感谢。

这是我的代码,它想在点击时更改为 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>

最佳答案

你可以尝试改变这个:

$(".ajax_link").click(function(e) {

为此:

$(document).on('hover mouseover mouseenter', ".ajax_link", function(e) {
//e.preventDefault(); //<-------you can take this out no need for this

如果你想停止页面的跳转可以这样做:

$(".ajax_link").click(function(e) {
e.preventDefault(); // or return false;
});

关于javascript - 如何通过 jquery 将点击更改为鼠标悬停或悬停?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15287430/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com