IE11和Edge浏览器不支持prepend的解决方法

可以使用insertBefore代替prepend

IE11和Edge浏览器中javascript不支持prepend方法,不过可以使用insertBefore来代替。

A.prepend(B);

可以替代为:

if (A.firstChild) {
    A.insertBefore(B, A.firstChild);
}
else {
    A.appendChild(B);
}

 

称谓(*)
邮箱
留言(*)