我想要完成的是让变量$ meta_value_pass通过ajax传递到另一个页面186.这个页面应该拾取变量,在循环中使用它并输出发送回生成的html。
来电来源:
$meta_value_pass = Entwerfen3;
<script>
jQuery(document).ready(function($){
alert ("helloworld");
$(".sorting").click(function()
{
var post_value = $meta_value_pass;
jQuery("#projektwrapper")
.empty()
.html("<div style='text-align: center; padding: 30px;'>Loading...</div>");
jQuery.ajax({
url: "http://web318.login-11.hoststar.at/ben/xarch/azall/?page_id=186",
dataType: "html",
type: "POST",
data: ({player: post_value}),
success: function(data) {
jQuery("#projektwrapper").html(data); }
});
});
});
</script>
PHP处理变量并返回html:
<?php
/*
Template Name: Projekte Getter
*/
$meta_value_pass = $_POST['player'];
$args= array(
'meta_query' => array(
array(
'key' => 'cf_cf_Lehrveranstaltung',
'value' => $meta_value_pass,
'compare' => 'LIKE'
))
);
$the_query = new WP_Query( $args );
?>