这是我的代码
var url = window.location.pathname;
var CurrentPage = url.substring(url.lastIndexOf('/') + 1);
if (screen.width <= 800) {
window.location = "mobile/********CurrentPage**********";
}
我将页面文件名称作为变量CurrentPage,然后我想在屏幕大小小于800时将该变量调回到url中以重定向到移动站点以及移动目录中的相应文件名...我只是不知道如何在mobile /
之后的window.location中显示变量我只是键入******** CurrentPage **********作为占位符,指引您走向我遇到问题的地方,我是朝着正确的方向走了吗? / p>
欢呼声
答案 0 :(得分:0)
您需要连接字符串才能添加变量:
window.location = 'mobile/' + CurrentPage
基本上,这意味着您需要关闭字符串并使用+
操作数添加变量。
每当您使用字符串中的变量时,都需要执行此操作。例如,您可以在字符串中间放置一个变量:
var baz = 'hello';
var foo = 'bar' + baz + 'bazzy';
在这种情况下,foo
将等于barhellobazzy