我在 JSP 上有一个 div,当我将鼠标悬停在与特定 css 类关联的项目上时,我想填充它,但看起来我遇到了范围问题。知道我做错了什么吗?
JSP: $('.hoverTrigger').myFunc();
文字在这里
JSP 引用的 JavaScript .js 文件:
$.fn.myFunc = function(options) {
$(this).each(function() {
$this.hover(
function() {
// Want to set text in messageBox here but not working
$('#messageBox').after("Hover IN").remove();
},
function() {
// Want to set text in messageBox here but not working
$('#messageBox').after("Hover OUT").remove();
}
);
});
};