var rinlinejQuery = / jQuery\d+="(?:\d+|null)"/g,
html: function( value ) {
if ( value === undefined ) {
return this[0] && this[0].nodeType === 1 ?
this[0].innerHTML.replace(rinlinejQuery, "") :
null;
// See if we can take a shortcut and just use innerHTML
}
它是否匹配代码,例如jQuery11="11"
?
为什么在html()
函数中需要它?