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 に答える