我想通過Ajax得到的東西,並把它變成AJAX使用jQuery在ASP.MVC2
我不得不從的Controler行動返回把這個成DIV?現在,我已經標準ASP.MVC查看結果...
public ActrionResult MyAction() {
return View();
}
,並在JavaScript我有:與MyAction相關
$.get(<url to controler action>, null, function(data) { $(#result).html(data); })
典型的行動,重新加載頁面可以完美運行。但是當我做$ .get(...)我有整個頁面在「數據」(內容和母版頁)。我怎樣才能得到View()的一部分,沒有MsterPage?
+1使用部分視圖 – Matias 2010-06-29 13:29:46