我想转换.live
为使用不多的.on
方法,.live
但我无法转换它。请帮我改一下。
$(".delete").live('click', function () {
var id = $(this).attr('id');
var b = $(this).parent().parent();
var dataString = 'id=' + id;
if (confirm("Sure you want to delete this update?")) {
$.ajax({
type: "POST",
url: "delete.php",
data: dataString,
cache: false,
success: function (e) {
b.hide();
e.stopImmediatePropagation();
}
});
return false;
}
});