我的模板与《js法典》其他部分分开。 我试图为我的模板做活动手(例如,我下面的立克事件),但它没有工作。 谁能告诉我我我我我我我如何能够解决这个问题?
var output = _.template($( #myTemplate ).html(), {myData});
$( #content ).html(output);
//This doesn t work
$( #myButton ).click(function(){
//Do something
});
//My template
<script type="text/template" id="myTemplate">
<h2><%= myTitle %></h2>
<button id="myButton">Button</button>
</script>