$('<element>')
和
$('<element />')
我很好奇哪一个是“更正确”的。我看到第一个显而易见的优势是简单地减少输入。使用哪一个有所不同?
/* Line 30*/ rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>)?$/,/* Line 121 */ // If a single string is passed in and it's a single tag // just do a createElement and skip the rest ret = rsingleTag.exec( selector );
以下是等效的:
>< a>< / a>>< a />>< a>