用from表单防止浏览器拦截打开的窗口js

//伪装一下表单提交在新窗口
        Vue.prototype.newWinUrl = function(url) {
                var f = document.createElement("form");
                f.setAttribute("action", url);
                f.setAttribute("method", 'get');
                f.setAttribute("target", '_black');
                document.body.appendChild(f)
                f.submit();
       }
            // 数字精度截取处理 小数位后直接舍去

你可能感兴趣的:(js)