一样的:
来自构造函数方法中的jquery源
// Match a standalone tag
rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>|)$/,
jQuery.fn = jQuery.prototype = {
constructor: jQuery,
init: function( selector, context, rootjQuery ) {
//cut
if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) {
// Assume that strings that start and end with <> are HTML and skip the regex check
match = [ null, selector, null ];
}
//cut
// scripts is true for back-compat
selector = jQuery.parseHTML( match[1], doc, true );
if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) {
this.attr.call( selector, context, true );
}
// cut
}
//CUT
parseHTML: function( data, context, scripts ) {
// Single tag
if ( (parsed = rsingleTag.exec( data )) ) {
return [ context.createElement( parsed[1] ) ];
}
}
如您所见,正则rsingleTag
表达式同时匹配<div/>
并且<div>
第一个控件仅检查字符串长度> = 3的开始字符<
和结束>
字符。
parseHTML 方法再次执行正则表达式,因此选择器是标签的名称。