为了账号安全,请及时绑定邮箱和手机立即绑定

更新价格的变化,包括选择

更新价格的变化,包括选择

白猪掌柜的 2022-01-13 19:23:39
这是我的小提琴: https ://jsfiddle.net/btekbtek/6gxztk4f/6/当我输入数量时,我会自动计算价格。我还想包括每 1 数量增加 1 英镑的选择选项。如果有人输入 10 数量 - 价格应该是 qty10*(£1*10)*price目前当我添加: // update price if option change var optionprice = 0; var getPriceOption = function() {   jQuery("#select_21").change(function() {     if (jQuery(this).val() === '63') {       optionprice = 0;     } else {       optionprice = 1;     }   }); //end update optionprice   return optionprice; }; //end get PriceOption console.log(getPriceOption);getPriceOption 未定义。我试图在之前和相同的结果之后添加它。我无法更改 HTML 中的任何内容,只能在 jQuery 中更改。
查看完整描述

1 回答

?
侃侃尔雅

TA贡献1801条经验 获得超15个赞

这已经足够了:


var updateprice = $("#select_21 option:selected").attr('price');

添加在:


while (i--) {

         if (qty >= tierPrices[i]['price_qty']) {

           var updateprice = $("#select_21 option:selected").attr('price');

           var calc_price = tierPrices[i]['price'] * qty + (updateprice*qty);

           return (calc_price).toFixed(2)

         }

       }


查看完整回答
反对 回复 2022-01-13
  • 1 回答
  • 0 关注
  • 133 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信