0

「収益」「控除」の2 つのテキスト フィールドがあります。収益には、HRA、基本給などのコンポーネントがあり、控除にもいくつかあります。

別の 2 つのテキスト フィールド「総収入」「総控除」があります。

Total Earnings = earning component1 + earning component2

Total Deductions = deduction component1 + deduction component2

私が欲しいのは、合計収益と合計控除の結果を表示するための 2 つの関数を作成する必要があることです。つまり、「収益」と「控除」の値を入力すると、「合計収益」と「合計控除」に自動的に反映されるはずです。 "

4

3 に答える 3

0

use javascript for calculation

function cal()
{
//calculation part here
//var total_earning = your result

//Earnings textbox
document.getElementById(textfield_name1).value = total_earning;

//Deductionstextbox
document.getElementById(textfield_name2).value = total_earning;
}
于 2013-09-19T12:56:10.240 に答える