日期:2014-05-18 浏览次数:20974 次
<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <SCRIPT src="http://gt123.cn/js/j142.js" type=text/javascript></SCRIPT> <script> function aa() { var total = 0; $("tr>td:nth-child(3)>input").each(function () { total = total + $(this).val()*1; }); alert(total); } </script> </head> <body> <form id="form1" runat="server"> <table> <tr> <td><input type="text" value="122"/></td> <td><input type="text" value="22"/></td> <td><input type="text" value="221"/></td> <td><input type="text" value="44"/></td> </tr> <tr> <td><input type="text" value="77"/></td> <td><input type="text" value="25452"/></td> <td><input type="text" value="25421"/></td> <td><input type="text" value="54"/></td> </tr> <tr> <td><input type="text" value="14522"/></td> <td><input type="text" value="2542"/></td> <td><input type="text" value="25421"/></td> <td><input type="text" value="54"/></td> </tr> </table> <input type="button" onclick="aa();" value="提交"/> </form> </body> </html>