1
これはajax関数を使用してli要素を削除するためのコードですが、出力されません。jquery ajax delete関数を使用していますが、実行していません。
jQuery.ajax({
type: 'DELETE',
url: 'http://example.com', /* url */
dataType: 'xml',
complete: function(response, statusText){
if (statusText == 'success') {
jQuery('li.product input[value="B0070X7W9M"]').parent().remove();
/* need to delete li element */
}
}
});
私はjquery ajaxの新機能を助けてください。