摘要:
1、获取jquery对象:height():内容高2、js原生对象:clientHeight:内容高+paddingscrollHeight:内容高+padding+滚动offsetHeight:内容高+padding+边框outerHeight :内容高+padding+边框+margin 阅读全文
摘要:
1、$(document).ready(function(){ alert("页面加载完成!"); }); 简写: $(function(){ alert("页面加载完成!"); }); 2、原生JS方法 window.onload=function(){ alert("页面加载完成!"); } window.onload:会在页面的document全部加... 阅读全文