我有一个基于 HTML、JavaScript 和 PHP 构建的电子商务网站。
在产品详细信息页面上,用户可以将产品添加到购物车,因此我显示的是购物车价值的总额。
我想始终显示十进制数 (10,2) 格式。
目前我的代码工作最少。如果产品价格为 12.00,则单击“添加到购物车”时,计数器 div 仅显示 12。
<span>
<a href="cart.php" class="text-white">
<i class="fa fa-shopping-cart p1" data-count="10" data-currency="€" id="total"></i>
</a>
</span>
.p1[data-count]:after{
position:absolute;
right:1%;
top:1%;
content: attr(data-count);
font-size:10px;
padding:.2em;
line-height:1em;
color: white;
background:#21468b;
text-align:center;
width: 100%;
font-weight:normal;
}
<script>
var theTotal = '0';
var ProductSellingPrice = '12.00'
$('#insert').click(function(){
theTotal = Number(theTotal) + Number(ProductSellingPrice);
$('#total').attr('data-count', theTotal);
});
</script>
因此,在单击插入时,将添加现有的 TheTotal 和当前产品价格。如果购物车上没有产品,则 p1 不显示任何值,因此如果为空/零,则希望始终显示零。如果产品价格为 12.00,则仅显示 12。如果产品价格为 12.50,则显示 12.50。
我希望它始终显示十进制以及使用数据属性的货币符号。
显示小数点问题由@Simone 解决,我无法找到使用数据属性在值之前显示货币的答案。
一只斗牛犬
相关分类