我想要運行一個php循環,一旦我按下一個單選按鈕。我意識到我必須使用ajax來做到這一點。我對ajax非常陌生,所以我很難完成這個任務。現在發生的事情是,我甚至不能再按下單選按鈕,什麼都沒有顯示出來。在ajax中的函數php
我試過到目前爲止:
我的循環(工作正常): magazines.php:
<?php
$args = array('post_type' => 'magazine', 'posts_per_page' => 10);
$loop = new WP_Query($args);
while ($loop->have_posts()) : $loop->the_post();
the_title();
echo '<div class="entry-content">';
the_content();
echo '</div>';
endwhile;
}
?>
阿賈克斯主頁:
$('radio').click(function() {
$.ajax({
url: 'magazines.php',
success: function(){
alert('success');
}
});
return false;
});
任何幫助將是讚賞。 謝謝!
評論 「返回false;」並嘗試 – AkshayP
不行,沒有工作:/ – kerv