我正在尝试使用 jQuery 计算物品的税金。我使用的 CRM 有一种叫做标签的东西,它采用 {tag_something} 的形式来动态地将信息读取到网页上。我想使用 jQuery 更新产品的价格。(稍后将针对国家特定税实施)。我拥有的代码正在更改原始价格,但不是将其更改为所需的价格,而是在页面上默认为“0”。任何想法或建议将不胜感激。我为此设置的产品是:http ://www.bemidjisportsonline.com/accessories/backpacks/klim-nac-pak
<!-- taxable items -->
jQuery(document).ready(function() {
initUpdateTax();
}
);
function initUpdateTax() {
var taxable = '{tag_taxcode}';
var saleprice = '{tag_saleprice}';
if (taxable == "Accessories"){
$('#taxable').text(function(saleprice) {
return Math.round(parseInt(saleprice + (saleprice * 0.06875));
});
}
}