gpt4 book ai didi

javascript - jQuery 事件处理程序在 Chrome popup.js 中不起作用

转载 作者:行者123 更新时间:2023-12-02 19:01:02 24 4
gpt4 key购买 nike

我有一个 popup.html,它加载 jQuery,然后加载 popup.js。当我将鼠标悬停在具有特定类的 div 上时,我尝试更改光标,但这没有发生。

popup.html

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<link type="text/css" rel="stylesheet" href="css/fbh-ui.css" />
<script type="text/javascript" src="js/jq.js"></script>
<script type="text/javascript" src="js/popup.js"></script>
</head>

<body style="width: 200px">
<div id="fbh-main">
<div class="fbh-popup-menu-item" id="fbh-popup-enabled"></div>
</div>
</body>

popup.js

$(document).ready(function() {
$('.fbh-popup-menu-item').mouseenter(function() {
this.css('cursor', 'pointer');
});

$('.fbh-popup-menu-item').mouseleave(function() {
this.css('cursor', 'default');
});
});

这段代码应该可以工作。 DOM 元素已经存在,因此没有理由不存在。

最佳答案

您编写 this 函数的方式是错误的,它必须类似于 $(this):

以下是更新后的代码:

 $(document).ready(function() {
$('.fbh-popup-menu-item').mouseenter(function() {
$(this).css('cursor', 'pointer');
});

$('.fbh-popup-menu-item').mouseout(function() {
$(this).css('cursor', 'default');
});
});

关于javascript - jQuery 事件处理程序在 Chrome popup.js 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14794936/

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