我有一个Model
withLevelInfo
属性:
public IEnumerable<Tuple<string, string, string>> LevelInfo { get; set; }
在视图中我有一个 JS 函数:
function fillPath(level, color) {
$('[level=' + level).attr({ 'fill': color });
}
现在我想遍历LevelInfo
并调用fillPath
函数:
$(document).ready(function() {
@foreach (var info in Model.LevelInfo)
{
// How can I call JS function from here?
// i.e, fillPath(info.Item1, info.Item2)
}
});
谢谢。