ExternalHTML jQuery spraudnis - CSS-triki

Anonim

internalHTML () ir dzimtā un atgriež DOM mezgla saturu (piem I live inside a div.., externalHTML () nav, kurā būtu iekļauts pašreizējais DOM mezgls (piemēram I live inside a div. ). Šī ir jQuery versija, kas to dara.

$.fn.outerHTML = function()( // IE, Chrome & Safari will comply with the non-standard outerHTML, all others (FF) will have a fall-back for cloning return (!this.length) ? this : (this(0).outerHTML || ( function(el)( var div = document.createElement('div'); div.appendChild(el.cloneNode(true)); var contents = div.innerHTML; div = null; return contents; ))(this(0))); )