0
function deleteLogoOrTextbyAjax(rowID, tableName){
alert(rowID);
alert(tableName);
jQuery.ajax({
type: "POST",
url: "/cycling/deleteLogoOrTextbyAjax",
//dataType: 'json',
data: { rowID: rowID, tableName: tableName },
success: function (res) {
$("div[dbid=rowID]").remove(); //here i need help
}
});
}
傳遞rowID,我想要刪除具有與傳遞值rowID相同的屬性「dbid」的div。jquery通過屬性值,然後選擇並刪除div
$("div[dbid=rowID]").remove();
上面的代碼不工作
'$( 'DIV [DBID = 「' + ROWID +」 ']')。rem'或' $('''的div [DBID = $ {ROWID}]''']' – Tushar