gpt4 book ai didi

javascript - 为什么此查询字符串参数在移动设备上不起作用?

转载 作者:行者123 更新时间:2023-11-28 05:21:57 25 4
gpt4 key购买 nike

这在桌面上运行得很好。如果网址是 http://.....com?popup=true ,然后弹出窗口显示,否则隐藏。

但它总是显示在移动设备上 - 有什么想法吗?

<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
$(document).ready(function () {
//lots of functions...
function get4(name) {
if (name = (new RegExp('[?&amp;]' + encodeURIComponent(name) + '([^&amp;]*)')).exec(location.search))
{
return decodeURIComponent(name[1]);
}
}
var popup = get4('popup');
if (popup == "true")
{
$('.pop_up').show();
}
else
{
$('.pop_up').hide();
}
});
</script>
</head>
<body>
<!--html for popup-->
<div class="pop_up" style="display:none;">
...
</div>
</body>
</html>

最佳答案

请尝试下面的 JavaScript 代码。

  $(document).ready(function () {
var arrQueryStringParams = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&');
if (arrQueryStringParams.indexOf("popup=true") > -1)
{
$('.pop_up').show();
}
else
{
$('.pop_up').hide();
}
});

关于javascript - 为什么此查询字符串参数在移动设备上不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40481189/

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