将点击转换为onmouseover javascript

时间:2012-10-31 12:16:53

标签: javascript html css

我想将click事件更改为onmouseover事件以打开我的div然后如果鼠标向左移动我的div再次隐藏,就像下拉菜单一样,任何人都可以帮助我。

HTML code:

<html xmlns="http://www.w3.org/1999/xhtml">
<head>

<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Papermashup.com | Sliding Div</title>
<script src="jquery.js" type="text/javascript"></script>
<script src="dropdown/drop.js" type="text/javascript"></script>
<link type="text/css" href="dropdown/drop.css" rel="stylesheet"/>

</head>

<body>
 <a href="#" class="show_hide" onmouseover="this.#" >Show/hide</a><br />
    <div class="slidingDiv" style="width:103px;height:60px;">
        <img alt="" height="80" src="images/dropdown.png" width="103">
    </div>
</body>
</html>

CSS代码:

.show_hide {
    display:none;
}

JavaScript代码:

$(document).ready( function() {

    $(".slidingDiv").hide();
    $(".show_hide").show();

    $('.show_hide').click( function() {
         $(".slidingDiv").slideToggle();
    });

});

2 个答案:

答案 0 :(得分:2)

尝试

 $(".show_hide").mouseenter(function() {
       $(".slidingDiv").slideToggle();
  })

答案 1 :(得分:0)

只需使用mouseover绑定而不是点击绑定。

$('.show_hide').mouseover(function(){
    $(".slidingDiv").slideToggle();
}).mouseout(function(){
    $(this).slideToggle();
});