Can anyone provide me solution for how to dynamically add some code into the page in MVC.
I was doing this way but in this code the page fails to identity index javascript variable , as it is not identifying the index javascript variable.
$(document).on('click', '.add-option', function () {
var index = $("div.ques-options").size();
if (index < 5) {
$('.MainContainer').append('@Html.Partial("_Options", index)')
}
});
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…