鱼C论坛

 找回密码
 立即注册
查看: 2417|回复: 3

[已解决]有关鼠标放到按钮上实现高亮的问题

[复制链接]
发表于 2020-4-3 15:50:24 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
我想按照书本上的方式利用Event对象的方式实现两个按钮鼠标放上去时高亮,移开时还原的效果。但是我发现鼠标放到按钮上时,按钮上登录两个字的背景色却并没有高亮显示,鼠标放到登录上面登录两个字的颜色高亮了其他地方却没有高亮,是有什么地方不对吗。之前用button标签的属性实现的时候是没有这问题的
<!DOCTYPE html>
<html lang="en">
        <head>
                <meta charset="utf-8">

                <link rel="icon" href="goo.jpg">
                <title>在线多人聊天室</title>

                <style>  
                        body{
                                background-image: url("hyper_beast1.jpg");
                                background-size: cover;
                                background-position: 0px 0px;
                                background-repeat: no-repeat;
                        }        
                        h2{
                                color: white;
                        }
                        .login{
                                height: 400px;
                                width: 400px;
                                background-color: rgba(255, 255, 255, 0.75);
                                border-width: 2px;
                                border-color: black;
                                border-style: solid;
                                border-radius: 15px;
                        }

                        #log1{
                                background: green;
                                height: 40px;
                                width: 300px;
                                border-radius: 5px;
                                font-size: 20px;
                        }

                        #register1{
                                background: green;
                                height: 40px;
                                width: 300px;
                                border-radius: 5px;
                                font-size: 20px;
                        }

                </style>

        </head>

        <body>
                <h2><center>在线多人聊天登录:</center></h2>
                <br><br>
                <center>
                        <div class="login">
                                <form class="login1" method="POST"></form>
                                        <br><br><br><br>
                                        <label>账户:</label> <input id="account" autofocus> <br><br>
                                        <label>密码:</label> <input type="password"> <br><br><br><br><br><br>

                                        <button id="log1" type="submit" value=""><b>登录</b></button>
                                        <br><br>
                                        <button id="register1" type="button"><b>注册</b></button>
                                </form>
                        </div>
                </center>
                
                <script>
            document.getElementById("register1").onclick = function()
                        {

                document.location.assign("February.html");
            }

                        var elems=document.getElementsByTagName('button');
                        for (var i=0;i<elems.length;i++)
                        {
                                elems[i].onmouseover=HandleOnButton;
                                elems[i].onmouseout=HandleOutButton;
                        }


                        function HandleOnButton(e)
                        {
                                e.target.style.background='#28FF28';
                        }

                        function HandleOutButton(e)
                        {
                                e.target.style.background='green';
                        }

        </script>


        </body>

</html>
最佳答案
2020-4-3 19:32:17
Junpei 发表于 2020-4-3 19:22
你好,你的意思是target不仅会选中button也会选中它的子标签是吗,我试了一下去掉b标签确实可以

onmouseover 对<button>和<b>这两个盒子分别起作用,你用console.log(elems[i]),DOM层次中<b>依旧是一个子节点,应该是js 的事件冒泡起作用,所以子元素onmouseover父元素 onmouseout
q1.png
q2.png
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

发表于 2020-4-3 18:20:00 | 显示全部楼层
有了buttton 里面的<b>去掉不就可以啦~
<!DOCTYPE html>
<html lang="en">
        <head>
                <meta charset="utf-8">

                <link rel="icon" href="goo.jpg">
                <title>在线多人聊天室</title>

                <style>  
                        body{
                                background-image: url("hyper_beast1.jpg");
                                background-size: cover;
                                background-position: 0px 0px;
                                background-repeat: no-repeat;
                        }        
                        h2{
                                color: white;
                        }
                        .login{
                                height: 400px;
                                width: 400px;
                                background-color: rgba(255, 255, 255, 0.75);
                                border-width: 2px;
                                border-color: black;
                                border-style: solid;
                                border-radius: 15px;
                        }

                        #log1{
                                background: green;
                                height: 40px;
                                width: 300px;
                                border-radius: 5px;
                                font-size: 20px;
                        }

                        #register1{
                                background: green;
                                height: 40px;
                                width: 300px;
                                border-radius: 5px;
                                font-size: 20px;
                        }

                </style>

        </head>

        <body>
                <h2><center>在线多人聊天登录:</center></h2>
                <br><br>
                <center>
                        <div class="login">
                                <form class="login1" method="POST"></form>
                                        <br><br><br><br>
                                        <label>账户:</label> <input id="account" autofocus> <br><br>
                                        <label>密码:</label> <input type="password"> <br><br><br><br><br><br>

                                        <button id="log1" type="submit" value="">登录</button>
                                        <br><br>
                                        <button id="register1" type="button">注册</button>
                                </form>
                        </div>
                </center>
               
                <script>
            document.getElementById("register1").onclick = function()
                        {

                document.location.assign("February.html");
            }

                        var elems=document.getElementsByTagName('button');
                        for (var i=0;i<elems.length;i++)
                        {
                                elems[i].onmouseover=HandleOnButton;
                                elems[i].onmouseout=HandleOutButton;
                        }


                        function HandleOnButton(e)
                        {
                                e.target.style.background='#28FF28';
                        }

                        function HandleOutButton(e)
                        {
                                e.target.style.background='green';
                        }

        </script>


        </body>

</html>
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

 楼主| 发表于 2020-4-3 19:22:39 | 显示全部楼层
dlnb526 发表于 2020-4-3 18:20
有了buttton 里面的去掉不就可以啦~

你好,你的意思是target不仅会选中button也会选中它的子标签是吗,我试了一下去掉b标签确实可以
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-4-3 19:32:17 | 显示全部楼层    本楼为最佳答案   
Junpei 发表于 2020-4-3 19:22
你好,你的意思是target不仅会选中button也会选中它的子标签是吗,我试了一下去掉b标签确实可以

onmouseover 对<button>和<b>这两个盒子分别起作用,你用console.log(elems[i]),DOM层次中<b>依旧是一个子节点,应该是js 的事件冒泡起作用,所以子元素onmouseover父元素 onmouseout
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-12-23 10:08

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表