將會執行函數getJSONP的cb0方法,並把data做爲參數傳入,從而執行callback方法
function getJSONP (url, callback) { let cbnum = 'cb' + getJSONP.counter++; let cbname = 'getJSONP.' + cbnum; if (url.indexOf('?') === -1) { url += '?jsonp=' + cbname; } else { url += '&jsonp=' + cbname; } let script = document.createElement('script'); getJSONP[cbnum] = function (response) { try { callback(response) } finally { delete getJSONP[cbnum] script.parentNode.removeChild(script) } } script.src = url; document.body.appendChild(script);} getJSONP.counter = 0;複製代碼