$('.removeItem').live('click',function(){
var postData = {};
$(this).closest('tr').find('.tableRow'){
var keyPrefix = 'data[' + index + ']';
postData[keyPrefix + '[index]'] = $(this).closest('tr').find('.row_id').text();
postData['data['+ index +'][order_id]'] = $('#order_id').text();
};
我不確定它是否顯而易見我正在嘗試做什麼,我錯了?
編輯:
完全是我的錯,稍微在原來的職位誤導,這是我的完整代碼:
$('.removeItem').live('click',function(){
var postData = {};
$(this).closest('tr').find('.tableRow'){
var keyPrefix = 'data[' + index + ']';
postData[keyPrefix + '[index]'] = $(this).closest('tr').find('.row_id').text();
postData['data['+ index +'][order_id]'] = $('#order_id').text();
)};
$.ajax
({
type: "POST",
url: "deleterow.php",
dataType: "json",
data: postData,
cache: false,
success: function()
{
alert("Item Deleted");
}
});
$(this).closest('tr').remove();
calcTotal();
});
一旦你走到這一步:'$(本).closest( 'TR')找到(」 tablerow的。 ')'你想完成什麼?你是否想在這個包裝集上運行後續代碼塊? – 2010-11-12 13:30:08