美文网首页
js功能代码段

js功能代码段

作者: muroujue | 来源:发表于2018-07-10 09:05 被阅读0次

    获取url中的query参数

    function getQueryString(name) {
        var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i"); // 匹配目标参数
        var result = window.location.search.substr(1).match(reg); // 对querystring匹配目标参数
        if (result != null) {
            return decodeURIComponent(result[2]);
        } else {
            return null;
        }
    }
    

    设置rem单位比例

    document.addEventListener('DOMContentLoaded', function () {
        var deviceWidth = document.documentElement.clientWidth
        document.documentElement.style.fontSize = deviceWidth / 10 + 'px'
    }, false)
    window.onresize = function () {
        var deviceWidth = document.documentElement.clientWidth
        document.documentElement.style.fontSize = deviceWidth / 10 + 'px'
    }
    

    相关文章

      网友评论

          本文标题:js功能代码段

          本文链接:https://www.haomeiwen.com/subject/ivaxpftx.html