<table class="text">
<tr class="li1"><td class="ln"><pre class="de1">1
2
3
4
5
6
7
8
9
10
11
12
13 显示的时候设置$("body,html").css({"overflow":"hidden"}); 在模态关闭的时候设置$("body,html").css({"overflow":"scroll"}); 移动端: 在模态显示的时候设置window.addEventListener('touchmove',stopMove,false); 在模态关闭的时候设置window.removeEventListener('touchmove',false); function stopMove(e){ e.preventDefault(); e.stopPropagation(); } 移动端tap点破事件处理 使用https://github.com/ftlabs/fastclick 将tap设置为click 原文链接:/note/420804.html