1234567891011121314151617181920 |
- $(document).ready(function () {
- //解决iOS中伪类:active失效
- document.body.addEventListener('touchstart', function () {
- });
- //当弹窗出现时内容层禁止滚动
- $(".layer").on("touchmove", function (event) {
- if ($(".layer").is(":visible") == true) {
- event.preventDefault();
- }
- });
- //关闭弹层
- $(".mask").click(function () {
- $(".layer").fadeOut();
- });
- $(".pop_btn").click(function () {
- $(".layer").fadeOut();
- })
- });
|