只是一件事,我试图做,这将真的简化我的生活现在.
我怎样才能做到这一点 :
这是我在应用程序文件中的视图
window.ArtView = Backbone.View.extend({ template:_.template($('#art').html()),render:function (eventName) { var output="blablbla"; $(this.el).html(this.template({"output":output})); return this; } }); ... // function that I would like to call function callFunction(){ console.log('it works!'); }
index.html中的模板
<script type="text/tempate" id="art"> <div data-role="header" class="header" data-position="fixed"> <a href="#" data-icon="back" class="back ui-btn-left">Back</a> </div> <div data-role="content" class="content"> callFunction(); <% console.log(output) %> </div> </script>
我如何在我的模板或类似的东西中调用callFunction()?
任何想法 ?
谢谢 !