开发者社区> 问答> 正文

jquery怎么多值运算

screenshot
如图片所述的那样 在我原基础的代码上怎么写来实现数量+11在*面积=总和呢

 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
<style type="text/css">
</style>
<script type="text/javascript" language="javascript" src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
$(function() {
$("#panel :text").change(function() {
var totals = 0;
$("#panel").find("tr").each(function() {
var $this = $(this);
var price = $this.find("input.price").val();
var num = $this.find("input.num").val();
var numm = $this.find("inpur.numm").val();
price = parseInt(price);
num = parseInt(num);
numm = parseInt(numm);
if(!(isNaN(price) || isNaN(num))) {
totals += (price * num);
}
});
$("#total").val(totals);
});
$("#panel :button").click(function() {
var $tr = $("#ele").clone(true);
$tr.find("input.price").val("");
$tr.find("input.num").val("");
$tr.find("input.numm").val("");
$("#panel").append($tr);
});
})
</script>
</head>
<body>
总和:<input type="text" id="total" />
<table id="panel">
<tr id="ele">
<td>面积:</td>
<td><input class="price" value="16.2"/></td>
<td>数量:</td>
<td><input type="text" class="num" /></td>
<td>11</td>
<td><input type="text" class="numm"/></td>
<td><input type="button" value="添加" /></td>
</tr>
<tr>
<td>单价:</td>
<td><input type="text" class="price" /></td>
<td>数量:</td>
<td><input type="text" class="num" /></td>
<td><input type="button" value="添加" /></td>
</tr>
</table>
</body>
</html>

展开
收起
吴孟桥 2016-06-02 18:31:11 2365 0
2 条回答
写回答
取消 提交回答
  • 专注物联网

    思路就是当数量框的值change时,,触发总和的函数

    2019-07-17 19:25:29
    赞同 展开评论 打赏
  • 思路就是当数量框的值change时,,触发总和的函数

    2019-07-17 19:25:29
    赞同 展开评论 打赏
问答分类:
问答标签:
问答地址:
问答排行榜
最热
最新

相关课程

更多

相关电子书

更多
Javascript中的函数 立即下载
JavaScript函数 立即下载
低代码开发师(初级)实战教程 立即下载