// file: src/grunt-demo-1.js (function($) { var ALI_LINK_REG = /^http:\/\/(.+\.)?alibaba\.com/; // Collection method. $.fn.alilink = function() { return this.each(function() { var self = $(this); if( isAliLink(this) ){ self.addClass('ali-link'); } else { self.removeClass('ali-link'); } }); }; // Custom selector. $.expr[':'].alilink = function(elem) { return isAliLink(elem); }; function isAliLink(el) { return /A/i.test(el.tagName) && ALI_LINK_REG.test(el.href); } }(jQuery));