您当前的位置: 首页 >  Java

命运之手

暂无认证

  • 5浏览

    0关注

    747博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

【Javascript】【适配】取消移动网页全部默认样式和行为

命运之手 发布时间:2019-06-03 10:03:56 ,浏览量:5

css代码


* {
    margin: 0;
    padding: 0;
    outline: none;
    text-decoration: none;
    -webkit-user-select: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

js代码


    document.onmousedown = function (e) {
        e = e || event;
        e.preventDefault();
    };

关注
打赏
1654938663
查看更多评论
立即登录/注册

微信扫码登录

0.1342s