读书笔记

2015-05-12  本文已影响30人  futurefeeling
会不断添加在学习过程中遇到的细节问题

事件

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

插件

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

函数

$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);
});
上一篇下一篇

猜你喜欢

热点阅读