上面的是條件
下面的是代碼
if(show*40/100 <= input1){
//個人
sl = show*40/100*input5/100;
dl = show*40/100*input6/100;
$('#input3').val(sl);
}else if(input*300/100 > input1){
sl = show*300/100*input5/100;
dl = show*300/100*input6/100;
$('#input3').val(sl);
}else{
sl = show*input5/100;
dl = show*input6/100;
$('#input3').val(sl);
}
input1 是稅前收入 我怎麼感覺 他不成立呢
根據我的理解,input1是用戶輸入的數據,應該是輸入的工資,表格裡說輸入在平均工資*40%以下的,結果是。。。,所以if(show*40/100 <= input1)應該為if(show*40/100 >= input1),也就是if(input1<=show*40/100 ),表示輸入值在平局工資*40%之下,第二個判斷也是同樣道理,就不寫了,不知道是否理解有誤。。。