使用javascript参数作为razor数组索引

时间:2014-02-26 09:22:49

标签: jquery asp.net-mvc razor

我想在我的javascript函数中使用一个参数作为我的razor数组的索引参数。

function loadTemplate(index) {
    $("#wellContainer").empty();
    var htmldata = @Model.ServiceTemplateList[index].html
    $("#wellContainer").append(htmldata);
}

我得到The name index does not exist in the current context

我做错了什么?

0 个答案:

没有答案