我希望它像这样工作http://jsfiddle.net/jfriend00/JrhNz/6/但我有 id 而不是 css 类。
尝试使用 ids 而不是 css 类修改我的代码,但它不起作用。
我的代码:
echo "<tr>
<td>
<p class=\"question\" id=\"question\">".$rand['nume']."</p>
<p class=\"answer\" id=\"answer\">".$rand['rasp']."</p>
</td>
</tr>";
$(document).ready(function(){
$("#question").click(function(){
var prev = $(this).prev("p#answer");
$(this).siblings("p#answer").not(prev).slideUp("slow");
prev.slideToggle("slow");
});
$("p#answer").click(function(){
$(this).siblings("p#answer").slideUp("slow");
$(this).slideToggle("slow");
});
});