1

我想每 10 秒加载一次 php 脚本。加载代码不是问题,但在 Wordpress 中,所有插件都使用自己的 Jquery 库,如果我只是添加 jquery google 链接:

<script src="//ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js" ></script>

其他插件会崩溃。

我的页脚中有以下代码:

<?php
if ( is_user_logged_in() ) {
include 'completed.php';
}
?>

我想包含一个 jquery 脚本,以便我可以执行以下代码:

<?php
if ( is_user_logged_in() ) { ?>
<div id="completed">
    <script>
    $(function(){
        setInterval(function(){
               $("#completed").load("completed.php");
        }, 10 * 1000);
    });
    </script>
</div>
<?php } ?>

你觉得你能帮我吗?

4

2 回答 2

4

在页脚中从 google ajax 库加载 jquery

function my_init() {
    if (!is_admin()) {
        // comment out the next two lines to load the local copy of jQuery
        wp_deregister_script('jquery'); 
        wp_register_script('jquery', 'http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js', false, '1.3.2', true); 
        wp_enqueue_script('jquery');
    }
}
add_action('init', 'my_init');
于 2013-05-02T17:29:05.033 回答
0

但是你为什么不在无冲突模式下使用内置的 jQuery,这样就不会崩溃。

<?php
 if ( is_user_logged_in() ) { ?>
 <div id="completed">
 <script>
   jQuery(function(){
     setInterval(function(){
           jQuery("#completed").load("completed.php");
     }, 10 * 1000);
   });
 </script>
 </div>
<?php } ?>
于 2013-05-02T19:47:08.377 回答