移动端知识点

1.video宽度为100%,高度为自动时,计算video的高度:document.getElementById('video1').offsetHeight;

2.阻止页面滚动和解除页面滚动:

$('body').on('touchmove',function(ev) {
    ev.preventDefault();
});
$('body').off('touchmove');

3.

原文地址:https://www.cnblogs.com/cag2050/p/6182846.html