摘要: $(":file").change(function(){ var src = (window.URL || window.webkitURL).createObjectURL($(this)[0].files[0]);$("img").prop("src",src) }) 文本框上传之后有一个fi 阅读全文
posted @ 2016-03-29 17:07 找寻code屠龙之术 阅读(106) 评论(0) 推荐(0) 编辑
摘要: scrollTop 的最大值+$(window).height()=$("html").height(); 也就是滑到底部 后,这个scrollTop与整体页面高度相差一个屏幕高! 阅读全文
posted @ 2016-03-29 17:02 找寻code屠龙之术 阅读(1067) 评论(0) 推荐(0) 编辑
摘要: getBoundingClientRect() 这个方法返回一个矩形对象,包含四个属性:left、top、right和bottom。分别表示元素各边与页面上边和左边的距离。 var box=document.getElementById('box'); // 获取元素 alert(box.getBo 阅读全文
posted @ 2016-03-29 09:34 找寻code屠龙之术 阅读(139) 评论(0) 推荐(0) 编辑