例-ボタンクリック時
$('#btn').click(function () {
var flag = false;
var b;
$.ajax({
type: 'GET',
url: '/Test/PV1/' + $('#Elements').val(),
data: null,
success: function (data) {
alert(data.pageID);
}
});
return false;
});
コントローラ内
public ActionResult PV1(int id)
{
//-- here i need to make a call to the partial view as well as return the pageID to the main view
}
メインビューから部分ビューを呼び出すと同時に、JSON(ID)をメインビューに戻すことは可能ですか?