图(1.1)
某物流信息系统中的功能要求如图1.1所示,表格中每一行代表一笔运送货物的信息,在录入每行的计费重量和费率后,要求能按一定的公式,自动计算运送费用,并且能自动统计所有运送货物的总运费。运送货物信息的数据量(即表格的行数)不定,要求能动态增加、删除,即表格的数据行数是动态可维护的。同时为了方便操作,需要在页面中能像使用键盘的上下左右方向键,在录入的文本框之间进行切换。每行的数据有一定的校验要求,比如单号必须为8位数字,件数和重量必须为数字...
单行货物信息计算运费不难实现,只需要在计费重量和费率的文本框对象的onblur事件中,得到费率和计费重量,按照公式计算好运费即可。
总计费用的统计也不难实现,遍历整个表格的所有费用对象,统计其和,将计算结果放到总计的文本框对象即可。
难点在动态添加整行表格数据,而且每行数据上的各文本框对象的事件也要实现自动统计和运算,有相当的难度。如果使用JavaScript需要调用Dom对象创建一个 使用jQuery可以大大减轻工作量,在实际开发中,使用了jQuery的clone(true)函数,该函数可以创建一个jQury对象的副本,并且参数为true时,可以复制该元素的所有事件处理函数。 最初の行で送料の計算を実装できます。然后点增加明细按钮时,调用jQuery 的clone(true)函数,建立第一行的副本对象插入到表格下方,由于使用clone(true)可以复制对象的事件处理函数,所以每行中文本框的onblur事件和运费计算函数也被成功复制,No further processing is required. Greatly reduces the workload. 单元格,还需要在tr里面添加10多个单元格 对象,每个单元格 对象内要添加文本框对象,还需要在文本框对象上响应onblur事件进行运费计算,代码量相当大。
Key code
(1) Create a cloned cell object and add it to the table
var v=$("#tbin");//Get the jquery object of the table
//All data rows have a Class of .MyRow, get the size of the data row
var vcount=$("#tbin tr").filter(".MyRow").size() 1;//How many data rows does the table have
var vTr=$("#tbin #trDataRow1"); //Get the first row of data in the table
var vTrClone=vTr.clone(true);//Create a copy object of the first row vTrClone
vTrClone.appendTo(v);//Create the copy cell object Add to the bottom of the table
(2) Statistical update total amount
function UpdateTotal()//Update the total amount
{
var vTotalMoney=0;//The initial value of the total amount is 0;
var vTable=$("#tbin ");//Get the jquery object of the table
var vTotal= vTable.find("#txtTotal");//Get the total amount object
var vtxtAfters=vTable.find("#txtMoney");// Get all the calculated expense objects;
vtxtAfters.each( //Use jQuery's each function to traverse each row of expense objects and add them up to the total amount
function(i)
{
var vTempValue=$ (this).val();
if(vTempValue=="")
{
vTempValue=0;
}
vTotalMoney=vTotalMoney parseFloat(vTempValue);//Calculate the total cost
}
)//End of traversal
vTotal.val(vTotalMoney); //Display the total cost into the corresponding text box object
}
(3) Calculate the cost when the billing weight changes, and calculate the total cost
$("#txtMoneyWeight").bind("change", function()
{
var vTotalMoney=0;//The initial value of the total amount is 0;
var vtxtDetail=$(this); //Get the changed text box object
var vVal=vtxtDetail.val();
var vtxtAfter=vtxtDetail.parent("td").parent("tr").find("#txtRate"); //Get the rate;
var vtxtMoney=vtxtDetail.parent("td").parent("tr").find("#txtMoney");//Get the fee;
var vMoney=CalculatorMoney(vVal ,vtxtAfter.val());//Use formula to calculate single line freight rate
vtxtMoney.val(vMoney); //Display single line freight information
UpdateTotal(); //Call function to update total cost statistics
} ;