.load ajax无法正常使用wordin wordpress主题

时间:2016-05-15 16:58:54

标签: javascript php jquery ajax wordpress

我尝试在我的Wordpress主题中使用.load函数,我使用的代码以前在HTML主题中测试过,效果很好。

当我在Wordpress主题的js文件中使用它时,它什么都没有显示。

有人能告诉我我做错了吗?

提前谢谢大家

  

jQuery和.js加载在functions.php

function atito_theme_scripts() {
wp_enqueue_style( 'atito-theme-style', get_stylesheet_uri() );

wp_enqueue_script( 'atito-theme-jquery', get_template_directory_uri() . '/js/jquery-2.2.2.min.js', array(), '20130114', true );

wp_enqueue_script( 'atito-theme-atito', get_template_directory_uri() . '/js/atito.js', array(), '20130114', true );
}
  

atito.js

var auto_refresh = setInterval(
function ()
{
jQuery('#auto').load('load.php').fadeIn("slow");
}, 100); // refresh every 100 milliseconds
  

HTML

<div id="auto"></div>
  

load.php

<p>test ajax</p>

1 个答案:

答案 0 :(得分:0)

不要在wordpress代码上使用$。仅使用jQuery

<script type="text/javascript">
var auto_refresh = setInterval(
function ()
{
jQuery('#auto').load('load.php').fadeIn("slow");
}, 100); // refresh every 100 milliseconds
</script>

<div id="auto"></div>