将按钮onclick分配给javascript函数将无法正常工作

时间:2011-09-09 01:43:19

标签: javascript jquery jquery-ui

我有一个函数,里面有一些不熟悉的代码。这是有效的,但我试图分配一个按钮,或链接来运行这个,正常的JavaScript事件将无法正常工作。该应用程序基于jquery和jqueryui。

el.prototype.commands.mkdir = function() {
    this.disableOnSearch = true;
    this.updateOnSelect = false;
    this.mime = 'directory';
    this.prefix = 'untitled folder';

    this.exec = $.proxy(this.fm.res('mixin', 'make'), this);

    this.shortcuts = [{
        pattern: 'ctrl+shift+n'}];

    this.getstate = function() {
        return !this._disabled && this.fm.cwd().write ? 0 : -1;
    }
}

有没有人有任何想法。

1 个答案:

答案 0 :(得分:0)

以上是来自elFinder的代码,它是开源的,可以在github上找到。 elFinder为创建文件夹操作准备了一个功能/按钮。还有什么想要实现的?