1
我有一個Model
與LevelInfo
屬性:調用JS功能
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)
}
});
謝謝。
你想在服務器或客戶端調用'fillPath'? – leppie
@leppie:在客戶端。 – user1260827