MVC に次のビューがあり、折りたたみ可能なメニューをレンダリングしようとしています。
@{
ViewBag.Title = "Details";
Layout = "~/Views/Shared/_Layout.cshtml";
}
@section Scripts {
@Scripts.Render("~/bundles/jqueryval")
<script type="text/javascript" src="@Url.Content("~/Scripts/knockout-2.2.0.js")"></script>
<script type="text/javascript" src="@Url.Content("~/Scripts/moment.js")"></script>
<script type="text/html" id="problemTemplate">
<li>ID# <span data-bind="text: ProblemID"/>
<ul data-bind="template: { name: 'visitTemplate', foreach: VisitList, as: 'visit' }"></ul>
</li>
</script>
<script type="text/html" id="visitTemplate">
<li> Visit <span data-bind="text: VisitID"></span>
</li>
</script>
<script type="text/javascript">
function MyViewModel() {
var self = this;
self.problems= ko.observableArray();
$.getJSON("/api/clients/1/history", self.problems);
}
$(document).ready(function () {
ko.applyBindings(new MyViewModel());
$('#usernav').find('ul').hide();
$('li').live("click", function (e) {
$(this).children('ul').toggle();
e.stopPropagation();
});
})
</script>
}
<div class="content">
<div id="title">
<h1>Details </h1>
</div>
<div>
<ul id="usernav" data-bind="template: { name: 'problemTemplate', foreach: problems, as: 'problem' }"></ul>
</div>
<div class="demo-section">
</div>
</div>
すべてのノードが表示された通常のリストを取得します。$('#usernav').find('ul').hide();
ノックアウト テンプレートがレンダリングされた後、イベントが発生することはないようです。これを修正するにはどうすればよいですか?