读书笔记

会不断添加在学习过程中遇到的细节问题

事件

.on('event', 'selector', event.data, function());

插件

(function ($) {
    $.fn.priceInterval = function () {
        // body...
        return this.each(function() {
                        
        });
    };
})(jQuery);

函数

  • .clone() 函数:
    使用技巧:将要克隆的内容复制一份,设置其为 display:none; 这样可以保证复制的内容都是原始的内容;

  • setTimeout(function(),time)函数:
    先举两个例子:

$this.on('blur', '.gradient-line input.gradient-input', function() {
    /* Act on the event */
    var hasErr = false;
    hasErr = hasErrorInput($this);      // 是否有错误    
    if (hasErr) {
        gradientHelp.text('请先填写未完善的价格区间');
    }
});
$this.on('blur', '.gradient-line input.gradient-input', function() {
    /* Act on the event */
    var hasErr = false;
    setTimeout(function () {
        hasErr = hasErrorInput($this);      // 是否有错误    
        if (hasErr) {
            gradientHelp.text('请先填写未完善的价格区间');
        }
    },0);
});

你可能感兴趣的:(读书笔记)