我是MVC和C#的新手,我必須用數字按鈕製作一個計算器。我如何將視圖中按鈕的值傳遞給控制器?有沒有我可以使用的源代碼?使用MVC的計算器
這裏是視圖
<form name="Cal">
<table border=1>
<tr>
<td width="65%" align="center">
<input type="text" name="Input" size="20" onchange="FixValue()">
<br>
</td>
</tr>
<tr>
<td width="65%" align="center">
<input type="button" name="one" value="1" onclick="f1(this.value)">
<input type="button" name="two" value="2" onclick="f1(this.value)">
<input type="button" name="three" value="3" onclick="f1(this.value)">
<input type="button" name="plus" value="+" onclick="Operate(this.value)">
<br>
<input type="button" name="four" value="4" onclick="f1(this.value)">
<input type="button" name="five" value="5" onclick="f1(this.value)">
<input type="button" name="six" value="6" onclick="f1(this.value)">
<input type="button" name="minus" value="-" onclick="Operate(this.value)">
<br>
<input type="button" name="seven" value="7" onclick="f1(this.value)">
<input type="button" name="eight" value="8" onclick="f1(this.value)">
<input type="button" name="nine" value="9" onclick="f1(this.value)">
<input type="button" name="multiply" value="*" onclick="Operate(this.value)">
<br>
<input type="button" name="Clr" value="c" onclick="AllClear()">
<input type="button" name="zero" value="0" onclick="f1(this.value)">
<input type="button" name="answer" value="=" onclick="Calculate()">
<input type="button" name="divide" value="/" onclick="Operate(this.value)">
<br>
</td>
</tr>
</table>
</form>
你想每次點擊一個按鈕時向服務器發送一個請求,或者當您點擊「=」 – singsuyash
時,只需點擊= –
,然後調用另一個函數時,您是否要創建計算表達式並僅向服務器發送請求clicki數字和jquery ajax調用「=」按鈕的函數。 – singsuyash