當用戶單擊該按鈕時,我需要將以下TextField的值提交給位於/TestService/SaveMethod
的Webservice。如何獲取文本字段值並通過webservice發送該值
<div class="content">
@Html.TextBoxFor(mo => mo.id, new { id = "id" })
<input type="text" id="fname" name="fname" />
<input type="submit" value="send" class="save"/>
</div>
的jQuery:
$(function() {
$('.save').click(function() { // How to grab the values of those textfields and send it over the webservice located at `/TestService/SaveMethod` });
});
好吧,那麼如果操作成功或失敗,我將如何獲得服務器響應? – 2013-02-26 09:25:51
您可以根據您得到的迴應顯示回覆,我的意思是標題信息。但是,留下那個,然後去ajax。 – gaurav 2013-02-26 09:29:43