gpt4 book ai didi

JavaScript 按钮不适用于 HTTPS 连接

转载 作者:行者123 更新时间:2023-11-30 05:48:24 25 4
gpt4 key购买 nike

当我转到网站的“游戏”部分时,按钮可以正常工作:http://sharepanel.net/games/

当我转到带有安全 SSL 连接的页面时,按钮不执行任何操作:https://sharepanel.net/games/

我错过了什么吗?

这是按钮的 Javascript 代码:

<script>
function getPage(el,page){
$(el).load(page, function(response, status, xhr) {

if (status == "error") {
var msg = "Error While Loading Page: ";
$(el).html(msg + xhr.status + " - " + xhr.statusText);
}
});
}

$(function(){
$("#top10").on("click",function(){
getPage("#main","/games/top10.php");
});

$("#action").on("click",function(){
getPage("#main","action.php");
});

$("#adventure").on("click",function(){
getPage("#main","adventure.php");
});

$("#timemanage").on("click",function(){
getPage("#main","timemanage.php");
});

$("#fungames").on("click",function(){
getPage("#main","fungames.php");
});

$("#newgames").on("click",function(){
getPage("#main","newgames.php");
});

$("#randomgames").on("click",function(){
getPage("#main","randomgames.php");
});
});
</script>

最佳答案

感谢大家的帮助,

我只是通过将所有 jQuery 文件保存到我的网站并将 jQuery 代码的 url 替换为我的网络服务器上的 url 来解决这个问题。

谢谢哈拉赫

关于JavaScript 按钮不适用于 HTTPS 连接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16383204/

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