有人可以告訴我如何使用jquery刪除和隱藏事件嗎?其實目前我使用的jquery波紋管及其工作正常,但它只是消除事件,但不隱藏它,請你可以修改它嗎?如何使用jquery刪除和隱藏?
function delData(id){
if(confirm('Do you really want to delete it ? if yes then click OK and wait for next notification please.. ')){
$.ajax({
type:'POST',
url:'manage_reports.php?action=del&id='+id,
success:function(result){
alert('Sale has been deleted successfully.. Do not refresh your page if you want to keep stay here');
$(control).parents('table').eq(0).remove().hide("table");
}
});
}
};
謝謝你這麼多
'.hide()'不會將選擇器作爲參數。你不想''.hide()'而不是'.hide(「table」)'? –
謝謝@JeffB,很高興你更新了我的答案。 – Adil
對不起,它不適用於我:( –