AJAX不适用于https

时间:2017-01-18 07:52:33

标签: javascript jquery html ajax

由于我在我的网络服务器上使用https,因此具有div自动刷新功能的AJAX不起作用。当我使用HTTP时,一切正常。有人能帮我吗?

这是我正在使用的代码:

<b> 
    <div id="showMessages">
        <script src=http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
            function autoRefresh_div() {
                $("#showMessages").load("showMessages.php"); // a function which will load data from other file after x seconds
                alert("Auto-Refresh works fine"); 
            }

            setInterval('autoRefresh_div()', 5000); // refresh div after 5 secs
        </script>
        <?php include("showMessages.php"); ?>
    </div>
</b><br>

div也可用。感谢大家

1 个答案:

答案 0 :(得分:0)

我已经解决了这个问题:

<script src="https://code.jquery.com/jquery-2.1.1.min.js" type="text/javascript"></script>
<script>
    $(document).ready(function() {
        setInterval(function() {
            $("#showMessages").load('showMessages.php')
        }, 2000);
    });
</script>