jQuery点击按钮页面滚动条向下滚动


方式一:可以控制滚动速度300

 
 $("#id").click(function() {
          $("input[name='?']").prop("checked",$(this).prop("checked"));
          if($("#checkAll").prop("checked")) {
               $("input[name='?']:checkbox").each(function() {
                    $(this).attr("checked", true);
               })
          } else {
               $("input[name='?']:checkbox").each(function() {
                  $(this).attr("checked", false);
               })
          }

 });
 

 方式二:

$(document).scrollTop(400);

 

 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM