我正在寻找一种无需JS或JQuery即可在html中进行计算的方法。因为不允许使用cript标签。
我正在使用shopify并打印订单,我想计算运输税,但不包括运输税。这就是为什么我正在寻找一种解决方案来手动计算这一点。但是我只能使用HTML或CSS
作为一个例子,我想这样计算:
<html>
<script>
$(function() {
var percentage = 21,
totalPrice = $('input[name=totalPrice]').val(),
calcPrice = totalPrice - ( (totalPrice/100) * percentage ),
discountPrice = calcPrice.toFixed(2),
discountPercentage =(totalPrice - discountPrice).toFixed(2);
$('input[name=\'netPrice\']').val(discountPrice);
$('input[name=\'discountPrice\']').val(discountPercentage);
});
</script>
<body>
Gross Price : <input type="text" name="totalPrice" value="1200"><br>
Net Price : <input type="text" name="netPrice"><br>
percentage Price : <input type="text" name="discountPrice"><br>
</body>
</html>
是否可以使用html或css进行计算?