我将一个 xml 文件保存到一个 json 对象中,然后遍历标题以将其显示在容器中,然后我尝试单击标题,但没有任何反应。
$(document).ready(function() {
$.get("Titles.xml", function(data, status) {
var jsonObj = $.xml2json(data);
$("#videoListTmpl").tmpl(jsonObj).appendTo("#titlesContainer");
});
$(".videoItem").on('click', function() {
console.log("this is the click");
});
html 文件。
<body>
<div id="container" style="margin-right: auto;margin-left: auto;width:960px;clear:both">
<div style="margin:0 auto;width:260px;float:left;height:400px;overflow:scroll" id="titlesContainer"></div>
<div style="margin:0 auto;width:670px;float:right;" id="titleContainer"></div>
</div>
<script id="videoListTmpl" type="text/x-jquery-tmpl">
{{each Titles}}
<div class="videoItem" style="cursor:pointer">
${titles}
</div>
{{/each}}
</script>
关于为什么事件没有触发的任何建议?