为什么我的脚本仅在管理面板上起作用,而在用户面板上却不起作用

时间:2019-06-11 10:18:04

标签: wordpress

当移动屏幕尺寸为600px时,我将从主页重定向到另一个页面。但这仅在我登录管理面板而不在用户面板(在wordpress中)有效时有效。

$(document).ready(function(){
    var url = $(location).attr('href');
    var screen_width = $(window).width();
    var custom_url ="http://www.thelostandfound.com/"

    if(url == custom_url && screen_width < 680 ) {
        window.location.replace('http://www.thelostandfound.com/m-home/');
    } else {
        window.location.replace('http://www.thelostandfound.com/');
    }
});

0 个答案:

没有答案