0

我有一个主干视图,在打印按钮上有一个点击事件,如下所示:

var updateInvoice=Backbone.View.extend({

 template:_.template(mytemplate),

 events:{'click #print':'print'},

 print:function()
 {
    window.frames['contentIframe'].print();
 }

 });

现在的问题是,每当实例化上述视图时,都会自动调用打印函数,而无需等待点击事件发生。

4

1 回答 1

0

尝试将函数重命名为非标准名称,例如:

var updateInvoice=Backbone.View.extend({

 template:._template(mytemplate),

 events:{'click #print':'printInvoice'},

 printInvoice:function()
 {
    window.frames['contentIframe'].print();
 }

});
于 2013-02-23T18:04:33.597 回答