我已经发送了一个 jquery-ajax 请求,它的响应是真的
但我需要更改页面上选定项目的值,但既没有发生操作,也没有警报警报
像 :
$('#rename').click(function () {
//alert( $(this).closest('td').prev().prev().text());
var name = prompt('enter the new name');
if (name) $.ajax({
url: url() + '/rename',
type: 'POST',
data: { value: name,
id: $(this).closest('tr').find('td :first').attr('value')
},
success: function (result) {
if (result.content == 1) {
//location.reload();
alert(name);
//$(this).closest('td').prev().prev().text(name);
}
}
})
})
你认为如何克服这个问题?