窗口getcomputedstyle无法执行'getcomputedstyle'

时间:2018-10-15 14:26:36

标签: javascript php jquery

我的网站使用核心PHP开发,我使用JS来使网站具有响应能力。 我在登录页面 https://varsitypartner.com/login.php

遇到此错误
main.js:91 Uncaught TypeError: Failed to execute 'getComputedStyle' on 'Window': parameter 1 is not of type 'Element'.
    at checkMQ (main.js:91)
    at moveNavigation (main.js:95)
    at HTMLDocument.$.ready (main.js:13)
    at l (jquery.min.js:4)
    at Object.fireWith [as resolveWith] (jquery.min.js:4)
    at Function.ready (jquery.min.js:4)
    at HTMLDocument.S (jquery.min.js:4)

我的Js函数显示错误:

function checkMQ() {
        //check if mobile or desktop device
    return window.getComputedStyle(document.querySelector('.main-content'),'::before').getPropertyValue('content').replace(/'/g, "").replace(/"/g, "");
    }

如何清除此错误。

0 个答案:

没有答案