我有以下的javascript:jQuery的 - 變量的作用域問題
$.getJSON('/calculate_quote/' + moulding_1_id, function(data) {
moulding_1_cost = data.moulding.cost;
moulding_1_width = data.moulding.width;
});
cost_of_moulding = ((2 * (width + (2 * moulding_1_width)) + 2 * (height + (2 * moulding_1_width)))/1000) * moulding_1_cost;
$('#item_total').html(cost_of_moulding);
的問題是,這兩個變量moulding_1_cost
和moulding_1_width
是的getJSON呼叫的不確定之外。如何在getJSON調用之外使這兩個變量可用?
或這^ ^更好 – slobodan 2010-11-30 14:47:35