标签:style blog http color ar sp div on c
看jQuery源码时看到两个正则表达式,一时不理解是什么意思,有什么功能,看了这篇文章《正则表达式30分钟入门教程》之后就明白了
1 rquickExpr = /^(?:(<[\w\W]+>)[^>]*|#([\w-]*))$/ 2 3 rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>|)$/
rquickExpr:匹配标签和id选择器
rsingleTag:匹配单标签
举个例子:有这样一些标签或选择器传入jQuery函数
$(‘<li>‘) $(‘<li>hello world‘) $(‘<li>hello world</li>‘) $(‘<li></li><li></li>‘) $(‘#box‘) $(‘.box‘) $(‘#div .box‘)
能被rquickExpr匹配的有:
$(‘<li>‘) $(‘<li>hello world‘) $(‘<li>hello world</li>‘) $(‘<li></li><li></li>‘) $(‘#box‘)
能被rsingleTag匹配的有:
$(‘<li>‘) $(‘<li>hello world</li>‘)
标签:style blog http color ar sp div on c
原文地址:http://www.cnblogs.com/raimonfuns/p/3994542.html