gpt4 book ai didi

javascript - 将查询字符串添加到 URL 重定向

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:34:58 26 4
gpt4 key购买 nike

我正在尝试使用我可以成功执行的查询字符串,除非它是移动页面。我正在做的是检查它是否是移动的并重定向。有没有办法将查询字符串附加到重定向 url?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<script type="text/javascript">// <![CDATA[
var mobile = (/iphone|ipad|ipod|android|blackberry|mini|windows\sce|palm/i.test(navigator.userAgent.toLowerCase()));
if (mobile) {
document.location = "http://www.xxxxxxx.com/mobile";
}
// ]]></script>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />

<title>xxxxxxxxx</title>

<script type="text/javascript">
window.onload = function(){
var total = 0;
for(var x = 0; x < parameters.length; x++){
document.getElementById("customerID").value = parameters[x].value;
}
document.forms[0].onsubmit = validate;
}
</script>

最佳答案

我想这可能就是你想要的..

var mobile = (/iphone|ipad|ipod|android|blackberry|mini|windows\sce|palm/i.test(navigator.userAgent.toLowerCase()));  
if (mobile) {
window.location = "http://www.xxxxxxx.com/mobile" + window.location.search + window.location.hash;
}

我将其简化为 window.location.search 是一个空字符串或以 ? 开头。 .hash 也是如此

如果您的起始 URL 是 http://www.some.com/entry?id=10重定向将是 http://www.some.com/mobile?entry?id=10

哈希也是如此

http://www.some.com/entry?id=10#paragraph2将重定向到 http://www.some.com/mobile?id=10#paragraph2

如果当前 URL 不包含重定向 URL 将保持原样。

关于javascript - 将查询字符串添加到 URL 重定向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16618354/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com