如何将博客文章重定向到另一个url,它在桌面视图中工作,但在移动视图中不工作.请告诉正确的代码? &g



//Javascript代码,用于重定向博客帖子的url到另一个url。//已经为移动设备选择了Desktop主题

<script type = "text/javascript">
if(window.location.href == 'https://example.blogspot.com/2021/03/blog-post.html') {
document.location = "https://amazon.com/";
if (screen.width < 699) {
document.location = "https://amazon.com/";
}
}
</script>

//如果你能提供代码将post url重定向到另一个url,那将非常有帮助。

代替screen.width试试window.innerWidth,代替document.location试试window.location

相关内容

  • 没有找到相关文章

最新更新