查看: 928|回复: 2
|
Javascript 问题
[复制链接]
|
|
halo..i got some javascript problem..i need some help.
i have a hidden form value which contain of the TOTAL., let say the total is rm100.
then i have anohter two radio button and two text box, one radio button for one text box.
for the first radio button & textbox set, the user should insert the percentage; for the second radio button and terxt box set, the user should insert the ringgit malaysia.
then how can i get the value form the hidden and the text box and radio button, it will automatically calcualte the discount rate witout submit any button.
let say i have the hidden total is rm100, then i choose ringgit radio button and insert rm50 into the text box, then below there will display rm50(rm100-rm50)?..plz help..plz guide me some coding..thanx. |
|
|
|
|
|
|
|
发表于 27-11-2007 11:51 AM
|
显示全部楼层
可能说说你写了什么,这样我们比较容易帮到你。  |
|
|
|
|
|
|
|
发表于 27-11-2007 11:58 AM
|
显示全部楼层
这是简单类似的做法,希望可以帮到你。 - <script type="text/javascript" language="javascript">
- function sum(val)
- {
- var returnValue = "";
- returnValue = 100 - val;
- document.getElementById("display").innerHTML=returnValue;
- }
- </script>
- <input type="text" onkeyup="total(this.value)">
- <br>
- <span id="display"></span>
复制代码 |
|
|
|
|
|
|
| |
本周最热论坛帖子
|