在 ie8 中,由于 jquery v1.8.3 中的这一行,我在弹出窗口中遇到了问题
this.insertBefore( elem, this.firstChild );
这是功能
prepend: function() {
return this.domManip(arguments, true, function( elem ) {
if ( this.nodeType === 1 || this.nodeType === 11 ) {
this.insertBefore( elem, this.firstChild );
}
});
这是错误的屏幕截图。
提前谢谢