admin管理员组文章数量:1345096
$("a[href $='.pdf']" ).addClass("linkIconPDF");
$("a[href *='.pdf#']").addClass("linkIconPDF");
$("a[href *='.pdf;']").addClass("linkIconPDF");
$("a[href *='.pdf?']").addClass("linkIconPDF");
$("a[href $='.txt']" ).addClass("linkIconTXT");
$("a[href *='.txt#']").addClass("linkIconTXT");
$("a[href *='.txt;']").addClass("linkIconTXT");
$("a[href *='.txt?']").addClass("linkIconTXT");
So far so good, but how can it be simplified to match any file type?
Is it possible to do some regex grouping to match all possible file types like this?
$("a[href $='.([a-zA-Z0-9]{2,4})']" ).addClass("linkIcon$1");
Test script: /
$("a[href $='.pdf']" ).addClass("linkIconPDF");
$("a[href *='.pdf#']").addClass("linkIconPDF");
$("a[href *='.pdf;']").addClass("linkIconPDF");
$("a[href *='.pdf?']").addClass("linkIconPDF");
$("a[href $='.txt']" ).addClass("linkIconTXT");
$("a[href *='.txt#']").addClass("linkIconTXT");
$("a[href *='.txt;']").addClass("linkIconTXT");
$("a[href *='.txt?']").addClass("linkIconTXT");
So far so good, but how can it be simplified to match any file type?
Is it possible to do some regex grouping to match all possible file types like this?
$("a[href $='.([a-zA-Z0-9]{2,4})']" ).addClass("linkIcon$1");
Test script: http://jsfiddle/k2jqn/
Share Improve this question edited Nov 23, 2012 at 15:58 Denis Ermolin 5,5566 gold badges29 silver badges44 bronze badges asked Nov 23, 2012 at 15:56 MartinMartin 2,0276 gold badges28 silver badges44 bronze badges 1- The URLs ending with semicolons seem rather unlikely? – user3638471 Commented Feb 28, 2016 at 11:07
4 Answers
Reset to default 6$("a").each(function(){
var match = this.href.match(/\.([a-zA-Z0-9]{2,4})([#;?]|$)/);
if(match){
$(this).addClass("linkIcon" + match[1]);
}
});
Demonstration: http://jsfiddle/k2jqn/4/
You can simply use the wildcard selector:
$("a[href*='.pdf']" ).addClass("linkIconPDF");
$("a[href*='.txt']" ).addClass("linkIconTXT");
It selects the links in a wildcard way.
Why not try this
$("a[href $='.$']" ).addClass("linkIconANYFILE");
Would an array with an each function be better than using a regex selector?
var fileTypes = new Array("a[href $='.pdf']","a[href *='.pdf#']");
fileTypes.each(function(index,val){
$(val).addClass('LinkIconPDF');
});
本文标签: javascriptjQuery Add file type class to links for ANY file typeStack Overflow
版权声明:本文标题:javascript - jQuery: Add file type class to links for ANY file type - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743792017a2539747.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论