| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 552 人关注过本帖
标题:怎样用JS处理鼠标点击事件的一个问题?
只看楼主 加入收藏
gu_tong2008
Rank: 1
等 级:新手上路
帖 子:250
专家分:7
注 册:2009-9-18
结帖率:76.32%
收藏
已结贴  问题点数:20 回复次数:2 
怎样用JS处理鼠标点击事件的一个问题?
有没有人帮我解决这样一个问题,代码如:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.
<html xmlns="http://www.
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
.part1{width:800px;height:400px;border:1px solid #11498a;margin:0 auto;}
.part2{width:800px;height:400px;margin:0 auto;}
</style>
</head>
<body>
    <div class="part1"></div>
    <div class="part2">
         <select name="aa" size="18">
          <option value="0">------------------------------------------------------------</option>
          <option value="1">------------------------------------------------------------</option>
      </select>      
     </div>
</body>
</html>

当我用鼠标点击part2中name="aa"的select选项时,其选项被选中,那么能不能实现此时当我用鼠标点击part1的任何位置的时候,name="aa"的列表中刚才被选中的选项不被选中呢?能否举个例子,把代码贴出来?


[ 本帖最后由 gu_tong2008 于 2010-11-29 10:01 编辑 ]
搜索更多相关主题的帖子: 鼠标 
2010-11-29 10:00
sclorg
Rank: 3Rank: 3
等 级:论坛游侠
帖 子:55
专家分:152
注 册:2010-4-16
收藏
得分:20 
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.
<html xmlns="http://www.
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
.part1{width:800px;height:400px;border:1px solid #11498a;margin:0 auto;}
.part2{width:800px;height:400px;margin:0 auto;}
</style>
</head>
<body>
    <div id='div1' class="part1"></div>
    <div class="part2">
         <select id="aa" size="18">
          <option value="0">------------------------------------------------------------</option>
          <option value="1">------------------------------------------------------------</option>
      </select>      
     </div>
</body>
<script>
var div = document.getElementById('div1');
var sel = document.getElementById('aa');
div.onclick=function(){sel.selectedIndex=-1 ;}
</script>
</html>
2010-11-29 10:38
gu_tong2008
Rank: 1
等 级:新手上路
帖 子:250
专家分:7
注 册:2009-9-18
收藏
得分:0 
谢谢!
2010-11-29 10:51
快速回复:怎样用JS处理鼠标点击事件的一个问题?
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.077058 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved