0
我試着向下滾動按鈕。我寫了很多代碼,但都不起作用。 我用代碼解釋。jquery向下滾動並按下按鈕
<div class="component">
<div class="go_up"></div>
<div class="go_down"></div>
<div id="content1" class="componentin">
<div id="item"></div>
</div>
</div>
這是我的HTML代碼。我想通過px滾動項目。此外,我在頁面中多次使用這個html代碼,所以代碼必須更具體。我試圖動畫第一個元素的按鈕div後,哪個類命名的項目。這是我的jQuery代碼(不行)
$(".go_up").click(function(){
var this1 = $(this);
var content = $(this1 + '+ .componentin');
var $component = $(content + ':first-child');
$component.animate({"marginTop": "-=50px"}, "slow");
});
$(".go_down").bind('click',function(){
var this1 = $(this);
var content = $(this1 + '+ .componentin');
var $component = $(content + ':first-child');
$component.animate({"marginTop": "+=50px"}, "slow");
});
感謝您的幫助
的感謝!這是工作。現在我必須修復不停的滾動:D –