page.js 517 B

1234567891011121314151617181920
  1. $(document).ready(function () {
  2. //解决iOS中伪类:active失效
  3. document.body.addEventListener('touchstart', function () {
  4. });
  5. //当弹窗出现时内容层禁止滚动
  6. $(".layer").on("touchmove", function (event) {
  7. if ($(".layer").is(":visible") == true) {
  8. event.preventDefault();
  9. }
  10. });
  11. //关闭弹层
  12. $(".mask").click(function () {
  13. $(".layer").fadeOut();
  14. });
  15. $(".pop_btn").click(function () {
  16. $(".layer").fadeOut();
  17. })
  18. });