Ako*_*kos 4 javascript jquery equivalent
Javascript 中.before()的等价物是什么?
node.insertBefore()非常相同:https://developer.mozilla.org/en-US/docs/Web/API/Node.insertBefore
$('#id').before('something');
//equivalent
var node = document.getElementById('id');
node.parentNode.insertBefore('something', node);
Run Code Online (Sandbox Code Playgroud)
这是jQuery的作用:https://gist.github.com/kagagnon/a13de27760ba1af883c0#file-gistfile1-js-L6064
before: function() {
return this.domManip( arguments, function( elem ) {
if ( this.parentNode ) {
this.parentNode.insertBefore( elem, this );
}
});
}
Run Code Online (Sandbox Code Playgroud)