嗨,朋友,我有两个变量price1和price 2,我现在要使用onchange事件动态获取价格值,我想添加这两个变量。
//get support layer firmness price
$('.support-layer-firmness').on('change', function(e) {
//first price
var price1 = 300;
});
$('.support-layer-thickness').on('change', function(e) {
//second price
var price2 = 200;
});
Now I want to add both variables price1 & price2
eg price = price1+price2;
o/p price= 500;
我怎样才能做到这一点。
最佳答案
您需要为这两个函数定义全局变量,例如
var price=0,price1=0,price2=0;
//get support layer firmness price
$('.support-layer-firmness').on('change', function(e) {
//first price
price1 = 300;
price=price1+price2;
alert(price);
});
$('.support-layer-thickness').on('change', function(e) {
//second price
price2 = 200;
price=price1+price2;
alert(price);
});
关于javascript - 使用jQuery添加两个变量,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/39762020/