如何在JavaScript中编写hoverHandler来在悬停时改变元素的颜色?

发布于 2024-12-11 09:59:10 字数 238 浏览 0 评论 0原文

function hoverHandler(e)
{
if(event.target.getAttribute("id") != "hovering")
{
    event.target.setAttribute("id", "hovering");
}
}

这是我的代码,我还有一个 CSS,可以在 id 悬停时设置颜色。

问题: 1)当我悬停时,当我离开元素时,颜色不会重置回以前的颜色

function hoverHandler(e)
{
if(event.target.getAttribute("id") != "hovering")
{
    event.target.setAttribute("id", "hovering");
}
}

This is the code I have, I also have a CSS that sets the color when id is hovering.

The problem:
1) As I am hovering, the color does not get reset back to previous color when I leave the element

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

兰花执着 2024-12-18 09:59:10

难道直接用CSS就可以解决问题吗?

一样

.element:hover
{
 background-color: #FF0000;
}

就像元素是类名

Can't you just use Css to solve the problem?

Something like

.element:hover
{
 background-color: #FF0000;
}

where element is the class name

岁月静好 2024-12-18 09:59:10

尝试添加,并确保您也检查了 onmouseout

 <script>
 function hoverHandler(e)
  {
 if(e.id=="red")    // hovering
 {
 e.id="blue"; 
 }else {
e.id="red"; 
 }
 }
 </script>
<span onmouseover="hoverHandler(this)" onmouseout="hoverHandler(this)">test</span>

,或者内联事件处理程序可能会将

<style>#startStyle {color:lime} #red {color:red}#blue{color:blue}</style>


 <span onmouseover="this.id='red'" onmouseout="this.id=''">test</span>

onmouseout 默认返回基本样式(如果有);或者

 <span onmouseover="this.id='red'" onmouseout="this.id='startStyle'">test</span>

try adding, and make sure your checking for onmouseout as well

 <script>
 function hoverHandler(e)
  {
 if(e.id=="red")    // hovering
 {
 e.id="blue"; 
 }else {
e.id="red"; 
 }
 }
 </script>
<span onmouseover="hoverHandler(this)" onmouseout="hoverHandler(this)">test</span>

or an inline event handlers could be

<style>#startStyle {color:lime} #red {color:red}#blue{color:blue}</style>


 <span onmouseover="this.id='red'" onmouseout="this.id=''">test</span>

onmouseout would default back to the base style if any; or

 <span onmouseover="this.id='red'" onmouseout="this.id='startStyle'">test</span>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文