我怎么让鼠标放到大的div中时边框变颜色的同时,图标也改变呢?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title> new document </title>
  <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
  <link rel="stylesheet" type="text/css" href="" />
  <style type="text/css">
  .box{width:1000px;margin:0 auto;height:500px;border:1px solid green;}
  .tbox{width:150px;height:30px;border:1px solid #585858; margin:10px 10px;}
  .ptes{width:115px;height:30px;}
  .tbox1{width:150px;height:30px;border:1px solid red; margin:10px 10px;}
  .pb{width:30px;height:30px;background-color:#eee;vertical-align:middle;background: url(re_code2.png) no-repeat #EEE 8px 8px;background-size: 15px;}
  .pb1{width:30px;height:30px;background-color:#eee;vertical-align:middle;background: url(re_code1.png) no-repeat #EEE 8px 8px;background-size: 15px;}
  </style>
  <script type="text/javascript"></script>
 </head>

 <body style="background-color:#FFF;">
  <div class="box">
    <div class="tbox" onmouseout="this.className='tbox'"  onmousemove="this.className='tbox1'">
           <div class="pb" style="float: left;" onmouseout="this.className='pb'"  onmousemove="this.className='pb1'">
            
           </div>
           <div class="ptes" style="float: left;">
                <input id="password" name="password" type="password" placeholder="  请输入密码" value=""  style="width:100%;height:26px;border-style:none"/>
           </div>
    </div>
  <div>
 </body>
</html>
红颜莎娜
浏览 801回答 10
10回答

胡说叔叔

js 就可以了

慕田峪4524236

mouseHover

慕无忌1623718

上面写着呢 你根本就没看代码

倚天杖

鼠标的图标其实就是鼠标状态吧,css也可以设置,但对图片格式有要求。

一只名叫tom的猫

链接的hover属性试试看。

潇湘沐

可以用css样式来写出效果,也可以用鼠标移入触发事件onmouseover来实现

蓝山帝景

我现在用的就是onmouseover,但布局是一个大的div包含两个小div,怎么怎么让鼠标放到大框任意地方里面的图标变色?

杨魅力

@yangzailu: 把onmouseover这个事件给大的div就可以了

明月笑刀无情

@旧城故人: 我已经给了 大的div边框可以 里面的不可以 请认真看代码呢

RISEBY

@yangzailu: 获取大div里面的小div,然后在大div的onmouseover事件中添加:div1.style.borderColor = '颜色',(假设变量名为div1)
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript