jquery插件开发,如何保存创建的元素的引用.

发布于 2022-09-05 20:27:10 字数 2591 浏览 18 评论 0

目前需求是用div元素实例化插件,在插件里创建一个input[type='file'],一个input[type='text']和button,input[type='text']的值为input[type='file']选择的文件名,在this上定义属性,把文件上传赋值给this.fileInput,调用自定义方法输出this.fileInput.files[0],输出值却为div元素.请问在闭包里如何保存使用创建的元素.代码如下:
;(function ($) {

    var hideFile;
    hideFile = (function () {
        function hideFile(element, options) {
            this.$div = $(element);
            this.settings = $.extend({}, $.fn.hideFile.defaults, options);
            this.settings = $.extend({}, $.fn.hideFile.defaults, this.$div.data(), options);
            this.init();
        }
        hideFile.prototype = {
            init: function () {
                var file = document.createElement('input');
                file.type = 'file';
                file.style.display = 'none';
                this.fileInput = file;
                var input = document.createElement('input');
                input.type = 'text';
                input.disabled = true;
                var button = document.createElement('button');
                button.type = 'button';
                button.innerText = 'select';
                this.$div.append(file, input, button);
                button.onclick = function () {
                    file.click();
                };
                file.onchange = function () {
                    var value = this.value;
                    if (value)
                        value = file.files[0].name;
                    input.value = value;
                };
                console.log(this.fileInput);
                console.log('init');
            },
            getFiles: function () {
                console.log('getFiles');
                return this.fileInput.files;
            }
        };
        return hideFile;
    })();

    $.fn.hideFile = function (options) {
        return this.each(function () {
            var $me = $(this),
                instance = $me.data('plugin');
            //将实例后的插件缓存在dom里
            if (!instance) {
                $me.data('plugin', new hideFile(this, options));
            }
            //如果options是字符串,则调用方法options
            //$('#id').plugin('dosomething')即$('#id').plugin.dosomething()
            if ($.type(options) === 'string') instance[options]();
        })
    };
    $.fn.hideFile.defaults = {
        textAttrs: {
            className: 'default'
        },
        buttonAttrs: {
            text: 'select',
            className: ''
        }
    };
    $(function () {
        return new hideFile($('[data-plugin]'));
    });
})(jQuery);

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文