这是函数require
function require(url, cb = new Function) {
var s = document.createElement('script');
s.src = url;
s.async = true;
s.onload = cb;
document.head.appendChild(s);
}
以下是require2
:
function require2(url, cb = new Function) {
var s = document.createElement('script');
s.src = url;
s.onload = cb;
document.head.appendChild(s);
}
唯一的区别是第一个函数有一个异步赋值。我想知道,是否可以删除它?
谢谢,