我正在尝试将 jquery ui 选项卡与 js 和 mvc3 一起使用。
<div class="demo">
<div id="tabs">
<ul>
<li><a href="#tabs-1">Tab One</a></li>
<li><a href="#tabs-2">Tab Two</a></li>
</ul>
<div id="tabs-1">
<p> </p>
</div>
<div id="tabs-2">
<p> </p>
</div>
</div>
</div>
文件
function GetTabData(xdata) {
$.ajax({
url: ('/Home/GetTabData'),
type: 'POST',
contentType: 'application/json',
data: JSON.stringify({ id: xdata }),
success: function (result) {
alert("OK !");
},
error: function () { alert("error"); }
});
}
MVC3
public ActionResult GetTabData(string xdata)
{
data = fetch data and return to the calling script
return PartialView("_TabDataPartial", data);
}
所以这个问题将是非常基本的,如何将 js GetTabData() 调用与 TabOne 和 TabTwo 绑定
谢谢。