jquery 漂亮的删除确认和提交无刷新删除示例

2020-05-18 08:43:23易采站长站整理

‘class’ : ‘gray’,
‘action’: function(){} // Nothing to do in this case. You can as well omit the action property.
}
}
});
});
});

del.php

<?php
require “conn.php”;
$id=$_GET[‘id’];
$delete_small_sql = “delete from add_delete_record where id=’$id'”;
$result_small = mysql_query($delete_small_sql);
?>