摘要:
//返回顶部 只在未显示时,判断是否显示并返回顶部 function showBackToTop() { if ($("#divTop").is(":hidden")) { if ($(document).heigh... 阅读全文
摘要:
开发移动的html应用时常常需要将网页触控事件屏蔽掉。代码如下://屏蔽全局触控事件 document.ontouchmove = function(e){e.preventDefault();}来自互联网 阅读全文