JS代码 做一个简易的购物车 效果图如下

发布网友 发布时间:2022-04-24 02:24

我来回答

1个回答

热心网友 时间:2022-04-20 11:54

楼主是想要点击合计就是出数值还是什么?如果说点击合计就算出值的话如下

<table width="400" border="1">
    <tr>
    <th rows="5">简易购物车</th>
    </tr>
    <tr>
    <td>商品名称</td>
    <td>数量(件)</td>
    <td>单价(美元)</td>
    <td>运费(美元)</td>
    <td><button onclick="fun()">合计</button></td>
    </tr>
    <tr>
    <td><input type="text" name="goodsName" /></td>
    <td><input type="text" name="num" id="num" /></td>
    <td><input type="text" name="price" id="price" /></td>
    <td><input type="text" name="freight" id="freight" /></td>
    <td><input type="text" name="total" id="total" /></td>
    </tr>
</table>
<script>
function fun(){
var num = document.getElementById("num").value;
var price = document.getElementById("price").value;
        var freight = parseInt(document.getElementById("freight").value);
        var total = (price * num) + freight;
        document.getElementById("total").value = total;
}
</script>

声明声明:本网页内容为用户发布,旨在传播知识,不代表本网认同其观点,若有侵权等问题请及时与本网联系,我们将在第一时间删除处理。E-MAIL:11247931@qq.com