1

我创建了一个新的 wordpress 模板页面。这个想法是,当我单击侧边栏 div 中的链接时,它应该从我的 content-div 中的数据库加载内容。在一个简单的 php 页面上它可以工作,但结合我的 wordpress 模板页面它不起作用......

这就是我的代码:(短版)

<?php // Template Name: Weinkarte
get_header(); ?>

<div id="container-sidebar">
     <span id="wineList"></span>
</div>

<div id="sidebar-right">
    <li><a href='#' id='1' onclick='loadWine(this.id)'>Click</a></li>
</div>

get_footer();

<script>
function loadWine(id)
{
xmlhttp=new XMLHttpRequest();
xmlhttp.onreadystatechange=function()
  {
  if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
    document.getElementById("wineList").innerHTML=xmlhttp.responseText;
    }
  }
xmlhttp.open("GET","loadWine.php?landID="+id,true); //I think here is probably the fault
xmlhttp.send();
}
</script>

谢谢你的帮助!:)

4

1 回答 1

4

在 wordPress 中,您必须对 ajax 调用使用操作,类似这样(基本上在您的 functions.php 中)

add_action( 'wp_ajax_nopriv_myAjaxFunction', 'myAjaxFunction' );  
add_action( 'wp_ajax_myAjaxFunction', 'myAjaxFunction' );
function myAjaxFunction(){  
    //get the data from ajax call  
    $landID = $_POST['landID'];
    // rest of your code
}

在你的javascript文件中也使用post而不是这样的东西get

var data = "action=myAjaxFunction&landID="+id;
xmlhttp.open("POST","http://your_site.com/wp-admin/admin-ajax.php",true);
xmlhttp.send(data);

给定的示例只是一个想法,您应该阅读更多关于它的信息并jQuery轻松使用。您可以阅读有关Codex的更多信息,这是另一篇不错的文章

于 2013-04-21T04:45:50.640 回答