0
我需要計算髮票的總數。此發票是使用表單,金額,數量和稅收字段創建的,這些字段的總和是使用cfinput中的綁定進行的。 我不能使所有行的總和,總和。 我嘗試了一些行動,但在解決總結表單中綁定的字段,從cfc
沒有抵達,這是一個例子代碼:
<cfform action="" method="post">
<cfloop from="1" to="3" index="i">
Q.ta <cfinput type="text" name="quantita#i#" value="0">
+
Importo <cfinput type="text" name="importo#i#" value="0">
+
Tax <cfinput type="text" name="iva#i#" value="0">
=
Totale <cfinput type="text" name="totale#i#" value="0" bind="cfc:somma.getSomma({quantita#i#},{importo#i#},{iva#i#})">
<br /><br />
</cfloop>
CFC:
<cfcomponent>
<cffunction name="getSomma" access="remote" returntype="string">
<cfargument name="quantita" default="0">
<cfargument name="importo" default="0">
<cfargument name="iva" default="0">
<cfset totaleSomma=#evaluate((importo*quantita)*(1+iva))#>
<cfreturn totaleSomma>
</cffunction>
</cfcomponent>
我都贊成下降的使用jQuery驗證器。還沒回頭... –