jquery click事件在隐藏文件输入上被触发两次

时间:2013-02-04 16:43:41

标签: jquery

我有一个输入文件列表,这些文件对用户是隐藏的。有一个按钮,点击按钮后文件输入被触发。此按钮和隐藏表单控件列表在模态窗口上呈现。在第一次它正常工作但保存数据后,模态关闭,我再次尝试添加文件,点击事件被触发两次。在首先选择文件并选择,te文件浏览再来选择。代码如下。

this._control.button.name = '#fileselector';
....
this._current.fileControl = $('.file-0');
...

$(document)
    .on('click', this._control.button.name, function(event) {
                self._current.fileControl.trigger("click");
            })
    .on()....

1 个答案:

答案 0 :(得分:2)

尝试解锁像这样的点击事件

$("#buttonid").unbind('click').click(function (e) {    
});