2
我正在添加ajax這個我做的小列表的web應用程序。jQuery的形式是
我有一個PHP腳本輸出的列表中的每個項目的按鈕。我想調用ajax刪除一個項目與PHP和MySQL時刪除按鈕被點擊的項目之一。
下面是項目62的刪除按鈕。它有一個隱藏字段,其中包含數據庫中列表項的標識。當按鈕被點擊時,我想要一個jquery點擊事件被調用,它應該發送一個ajax請求,從數據庫中刪除具有該id的項目。
<form class="actions" action="index.php" method="POST">
<input type="hidden" name="idDel" id="62" value="62">
<input type="submit" class="button delete" value="X">
</form>
我到目前爲止想到的jquery如下所示。當點擊一個帶有class .delete的按鈕(任何刪除按鈕)時,它需要以某種方式從隱藏字段中獲取id值。
('.delete').click(function(){
//add click logic here
var id = $("input.delete").val();
return false;
$.ajax({
type: "POST",
url: "delete.php",
data: id,
success: function() {
現在,我已經看過兩個類似的問題,並試圖解決它們,但我不能從他們身上找出代碼。
- JQuery - which form was submitted?
- How can I get the button that caused the submit from the form submit event?
感謝。