我需要一些幫助在這裏,我已經有一個數據庫:我設法顯示/隱藏「註釋」字段「ID | PLZ |國家| |作者評論」阿賈克斯負荷「評論」的onclick
使用jQuery。
現在我試着用ajax onclick加載評論,所以如果你點擊「顯示評論」按鈕,ajax應該從特定的ID加載註釋。
我知道我需要更改jquery代碼以從正確的id獲得正確的評論,但我不知道該怎麼做。
繼承人我的代碼:
JQUERY:
$(document).ready(function(){
$(".productDescription").hide();
$(".show_hide").show();
$(".hide_show").hide();
$('.show_hide').click(function(){
$(this).parent().find('.productDescription').slideToggle();
$(this).parent().find(".show_hide").hide();
$(this).parent().find(".hide_show").show();
});
$('.hide_show').click(function(){
$(this).parent().find('.productDescription').slideToggle();
$(this).parent().find(".show_hide").show();
$(this).parent().find(".hide_show").hide();
});
});
</script>
PHP:
<?php
$abfrage = "SELECT * FROM ufo";
$ergebnis = mysql_query($abfrage);
while($row = mysql_fetch_object($ergebnis))
{
echo '
<div class="product clearfix">
<h4>ID:'.$row->id.'|PLZ:'.$row->PLZ.'|Country:'.$row->Country.'</h4>
<a href="#" class="show_hide">Show Comments</a>
<a href="#" class="hide_show">Hide Comments</a>
<div class="productDescription">
<p>Comment:'.$row->Comment.'</p>
</div>
</div>
<br>';
}
?>
我會很感激,如果有人可以幫助我。
只要
嘿,那裏,謝謝你的回覆,我現在有調用一個.php文件,提取評論?實時演示:http://www.twitch-smileys.com/ufo/ –
是的,基本上你可以通過url調用一個php方法,並在該php中調用數據庫。我不熟悉PHP,所以不能幫助你構建它,但我確信網絡上有很多例子。 – mattfetz
好吧,我會盡力,非常感謝!其他建議表示讚賞 –