gpt4 book ai didi

javascript - 使用 jQuery 在 Mousehoever 和 mouseout 上调用 javascript 函数

转载 作者:行者123 更新时间:2023-11-30 23:46:51 25 4
gpt4 key购买 nike

我想使用 mousehover jQuery 事件调用 javascript 函数。

这是一个函数。

// On mouse hover function     
function ShowHighlighter(d, highlight_elid) {
//alert ("ShowHighlighter\n"+d);
if (d == "addHighlight") {
var txt = getSelText();
if (txt.length < 1)
{
return;
}
ShowContent(d);
} else if (d == "deleteHighlight") {
var elid = "#"+d;
jQuery(elid).stop();
ShowContent(d);
delete_highlight_id = "#"+highlight_elid;
}
}


// on Mouse out function
function HideContent(d) {
if(d.length < 1) { return; }
document.getElementById(d).style.display = "none";
}

我正在尝试使用此功能...但它似乎不起作用。

jQuery('a[href="HIGHLIGHT_CREATELINK"]').mouseover(ShowHighlighter("deleteHighlight","highlight"+ randomCount + ");) ;
jQuery('a[href="HIGHLIGHT_CREATELINK"]').mouseout('javascript:HideContentFade(\"deleteHighlight\");')

请帮我解决这个问题。

谢谢。

最佳答案

您可以使用hover缩短语法的函数:

jQuery('a[href="HIGHLIGHT_CREATELINK"]').hover(function(evt) {
ShowHighlighter("deleteHighlight", "highlight" + randomCount);
}, function(evt) {
HideContentFade("deleteHighlight");
});

关于javascript - 使用 jQuery 在 Mousehoever 和 mouseout 上调用 javascript 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2786638/

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