如何在TypeScript中扩展JQuery函数

时间:2016-12-03 13:29:03

标签: jquery typescript interface es6-modules

我正在重写TypeScript上的一些JS代码,遇到模块导入问题。例如,我想写我的toggleVisiblity函数。这是代码:

/// <reference path="../../typings/jquery/jquery.d.ts" />

import * as $ from "jquery";

interface JQuery {
    toggleVisibility(): JQuery;
}

$.fn.extend({
    toggleVisibility: function () {
        return this.each(function () {
            const $this = $(this);
            const visibility = $this.css('visibility') === 'hidden' ? 'visible' : 'hidden';
            $this.css('visibility', visibility);
        });
    }
});

const jQuery = $('foo');
const value = jQuery.val();
jQuery.toggleVisibility();

但问题是,由于未知原因,toggleVisibility未添加到JQuery界面,因此我收到错误Property 'toggleVisibility' does not exist on type 'JQuery'.,但它会看到其他方法(val,{ {1}}等等。

为什么不起作用?

enter image description here

1 个答案:

答案 0 :(得分:3)

我得到了解决方案,这对我有用:

使用JQueryStatic接口进行静态jQuery访问,如$ .jGrowl(...)或jQuery.jGrowl(...)或在您的情况下,jQuery.toggleVisibility():

interface JQueryStatic {

    ajaxSettings: any;

    jGrowl(object?, f?): JQuery;

}

对于您使用jQuery.fn.extend使用的自定义函数,请使用JQuery接口:

interface JQuery {

    fileinput(object?): void;//custom jquery plugin, had no typings

    enable(): JQuery;

    disable(): JQuery;

    check(): JQuery;

    select_custom(): JQuery;

}

可选,这是我的扩展JQuery函数:

jQuery.fn.extend({
    disable: function () {
        return this.each(function () {
            this.disabled = true;
        });
    },
    enable: function () {
        return this.each(function () {
            this.disabled = false;
        });
    },
    check: function (checked) {
        if (checked) {
            $(this).parent().addClass('checked');
        } else {
            $(this).parent().removeClass('checked');
        }
        return this.prop('checked', checked);
    },
    select_custom: function (value) {
        $(this).find('.dropdown-menu li').each(function () {
            if ($(this).attr('value') == value) {
                $(this).click();
                return;
            }
        });
    }
});