美文网首页
读书笔记

读书笔记

作者: futurefeeling | 来源:发表于2015-05-12 17:20 被阅读30次
    会不断添加在学习过程中遇到的细节问题

    事件

    .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);
    });
    

    相关文章

      网友评论

          本文标题:读书笔记

          本文链接:https://www.haomeiwen.com/subject/nqvbfttx.html