我的按钮有问题。我已经搜索了档案,但似乎找不到合适的解决方案。
我想要打开和关闭标题的按钮,同时在标题外部单击时我也不想关闭标题
正如您在我的示例中看到的那样:http ://www.danieldoktor.dk/test/test.html
我无法让它正常工作。
这是我无法工作的代码。
<div class="lists">
<header class="box_header" id="box1">
<h1>HEADER 1</h1>
<div class="setting" id="btn1"></div>
</header>
$(document).ready(function(){
//When mouse rolls over
$("#btn1").click(function () {
$("#box1").stop().animate({height:'100px'},{queue:false, duration:600, easing: 'linear'})
});
//When mouse is removed
$("#btn1").mousedown('', function(){
$("#box1").stop().animate({height:'30px'},{queue:false, duration:1000, easing: 'easeInBack'})
});
$("#box1").hover('', function(){
$("#box1").stop().animate({height:'30px'},{queue:false, duration:1000, easing: 'easeInBack'})
});
你们中的任何人都可以帮忙吗?
丹尼尔