我在wordpress的后端有这个按钮,如果单击它,它应该从我的主题中的一个文件中的div更改内容。我可能离我的代码很远很远......
<input type="submit" value="load()" id="start_chat" /> //the button
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript">
$.ajaxSetup ({
cache: false
});
var loadUrl = "facut_mine3.php"; // the file where there is only a new content for the div #eu_la
$("#start_chat").click(function(){
$("#eu_la").load('http://www.fattorefamiglia.com/wp-content/themes/child_care_creative/layout_home_page2.php').html(loadUrl); //this is the file that I want to change, with the div #eu_la
});
</script>
当然,单击按钮时没有任何变化。还有其他办法吗?
答案 0 :(得分:1)
允许跨域Ajax请求在ROOT中设置 .htaccess 文件,其中包含以下内容:
<IfModule mod_headers.c>
Header set Access-Control-Allow-Origin "*"
</IfModule>
另见: