JavaScript按钮不适用于HTTPS连接

时间:2013-05-05 09:37:23

标签: javascript jquery button ssl

当我访问我网站的游戏部分时,这些按钮完美运行: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>

1 个答案:

答案 0 :(得分:1)

感谢所有帮助人员,

我刚刚通过将所有jQuery文件保存到我的网站并将URL替换为我的网络服务器上的网址的jQuery代码来修复此问题。

由于 Hrach