我正在学习在wordpress中使用Ajax(在Xampp上)
Jquery文件(jquery_test.js):
jQuery(document).ready(function($){
$("button").click(function(){
$.ajax({url: "http://www.wordpress2.com/demo_test.txt",
success: function(result){
$("#div1").html(result);
}});
});
});
的functions.php:
function my_theme_scripts() {
$myfile = get_template_directory_uri() . '/jquery_test.js';
wp_enqueue_script( 'my-great-script', $myfile, array( 'jquery' ),'1.0.0', true );
}
add_action( 'wp_enqueue_scripts', 'my_theme_scripts' );
我的json文件名为“demo_test.txt”
网页名称为“test”(页面上的按钮会触发ajax。)
当我点击“test”页面上的按钮,并查看控制台时,会发出ajax请求
www.wordpress2.com/test/demo_test.txt
但是文件demo_test.txt没有驻留在那里.....所以找不到它。
我做错了什么?