Asp表单方面求助! 求高手帮忙!急急急!
发货:<input type="text" name="send" size="16" tabindex="10">收货:<input type="text" name="get" size="16" tabindex="11">
运价:<input type="text" name="cprice" size="13" tabindex="12">
运费:<input type="text" name="payamount" size="17" tabindex="13"
onFocus="this.value=cprice.value*get.value">
以上是我写的代码, 表单输入页面,目的是在光标移动到运费处的时候,自动计算出应付的运费
现在已经可以自动计算, 可是实际中有个情况,就是当 收货>发货时, 运费=this.value=cprice.value*get.value
收货<发货的时候,this.value=cprice.value*send.value
计算公式是不同的, 这可怎么办啊
求高手帮忙!