1
我使用jQuery爲Textbox
設置值。我有一個Textbox
如下: -MVC - 獲取由jQuery腳本設置的文本框值
@Html.TextBoxFor(model => model.Location, new { @disabled = "disabled" })
在jQuery
,我爲此Textbox
設定值: -
$('#Location').val('xyz');
在HTTPPOST
,我有以下代碼: -
[HttpPost]
public ActionResult Location(FormCollection form, Location mod)
{
string getLocation = mod.Location;
string getLocation1 = form["FromEsiLocation"];
// Both these methods are unable to retrieve the value which is set by jQuery
}
如何獲得這個價值?
什麼是我可以用來代替'TextBox'的另一個元素? – Anup 2014-09-24 09:19:03
@ Anup.see更新了答案。 – 2014-09-24 09:28:13
@ Anup ..如果需要更多的幫助,然後PLZ評論.. – 2014-09-24 09:38:10