我正在使用jQuery來計算價格。這裏是我的JavaScript的一個小片段:如何將JavaScript中的變量傳遞給PHP?
// Prices: radio
var curLam = "gloss";
$("input[name=lamination]").click(function(){
var gloss = 5;
var matt = 6;
if ($(this).val() == 'gloss' && curLam != 'gloss'){
$('#prices span').text(parseInt($('#prices span').text()) + gloss - matt);
curLam = 'gloss';
console.log('1');
}
if ($(this).val() == 'matt' && curLam != 'matt'){
$('#prices span').text(parseInt($('#prices span').text()) - gloss + matt);
curLam = 'matt';
console.log('2');
}
$("#prices span").each(function(){
var $priceValue = $(this);
})
});
這種檢查是否啞光或光澤飾面已被選中,然後將其插入價格進入span
的prices
div
標籤內。
我需要知道如何將該價格值分配給一個變量,然後該變量可以傳遞給我的購物車的PHP。
但隨後oculd人改變的價值,這將意味着他們鱈魚有效地改變項目的成本 – user88039 2009-06-11 12:22:38