私はデータを表示しているテーブルを持っています削除ボタンをクリックすると行を削除したい 私はテーブルをデザインするためのブートストラップクラスを持っています。それフェードアウト効果が働いていない行を削除したい
<code><?php
while ($query = $qry->fetch_object()) {
?>
<tr><td><?php echo $query->Sumthing; ?></td>
<td><?php echo $query->Sumthing; ?></td>
<td><?php echo $query->Sumthing; ?></td>
<td><?php echo $query->Sumthing; ?></td>
<td><?php echo $query->Sumthing; ?></td>
<td><?php echo $query->Sumthing; ?></td>
<td><?php echo echo $query->Sumthing; ?></td>
<td> <button type="button" class="btn btn-sm btn-danger" 0nClick="deleteReminder(<?php print($query->id);?>)" >
</td>
</tr>
<script>
function deleteReminder(remId) {
if (confirm("Are you sure?")) {
$.ajax({
type: "POST",
url: "sumthing.php",
data: "remId="+remId,
success: function(result){
console.log(result);
}
});
$(this).animate({ backgroundColor: "#fbc7c7" }, "fast")
.animate({ opacity: "hide" }, "slow")
}
return false;
}
</script>
</code>
何が問題なのですか?フェード、削除、アヤックス? – chris85
フェーディングが効かない特定の行を選択する方法がわからない –