这是我使用 ajax 函数删除 li 元素的代码,但它不会给出任何输出。
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 的新手。