$("#@ViewBag.PageGroupID").append(data);
実行時に div の ID を返すようになりましViewBag.PageGroupID
た。div にデータを追加したい場合 (実行時に取得する ID)。どうすればこれを達成できますか?
$('#btnPageElementClick').click(function () {
var flag = false;
var b;
$.ajax({ type: 'GET', url: '/ScriptedTestCase/pageElementPV/' + $('#PageElements').val(), data: null,
success: function (data)
{
$("#@ViewBag.PageGroupID").append(data); //where divID is the id of the div you append the data.
}
});
return false;
});