传递参数以在jquery自定义小部件中起作用

时间:2014-09-16 10:26:17

标签: javascript jquery

如何在我的jquery自定义小部件中单击按钮时将参数传递给函数。

// bind click events on the button to the random method
        this._on(this.captureBtn, {
            // _on won't call random when widget is disabled
            click: "_getImage"
        });

我想将参数传递给getImage函数。请帮忙。

1 个答案:

答案 0 :(得分:0)

您问题的最可能解决方案是通过匿名函数传递它。这样,该函数不会在运行时进行评估。

    this._on(this.captureBtn, {
        // _on won't call random when widget is disabled
        click: function() {
            getImage(param1, param2);
        }
    });