gpt4 book ai didi

javascript - 手机上的 iFrame 重定向和重新加载主页问题

转载 作者:行者123 更新时间:2023-12-01 05:20:42 27 4
gpt4 key购买 nike

我的下面两个代码运行良好。第一个代码在电脑上运行良好,第二个代码在手机上运行良好。但我想在移动设备上使用第一代码和第二代码代理在 30 秒后自动重新加载。
如何在第一个代码上添加第二个移动代理代码?

第一个代码:

<script>
window.setInterval("reloadIFrame();", 30000);
function reloadIFrame() {
document.getElementById("test").src="http://example.com";
}
</script>

第二个代码:

<script>
var isMobile = function() {
return /(iphone|ipod|ipad|android|blackberry|windows
ce|palm|symbian)/i.test(navigator.userAgent);
};
if(isMobile()) {
window.location.href = "https://example.com";
}
</script>

抱歉英语不好。
请帮我解决这个问题。谢谢

最佳答案

据我所知,您也尝试在移动页面中使用相同的延迟功能。这里你可以试试这个,如果有问题请询问:

/* Define the functions */

var reloadIFrame = function() {
document.getElementById("test").src="http://example.com";
};

var isMobile = function() {
return /(iphone|ipod|ipad|android|blackberry|windows ce|palm|symbian)/i.test(navigator.userAgent);
};

/* Begin */

if (isMobile()) {
window.setInterval("reloadIFrame();", 30000);
}

关于javascript - 手机上的 iFrame 重定向和重新加载主页问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44214815/

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