0
我有一個關於用戶腳本的問題。在主函數initiateFlasher之前或之後是否更快?性能userscript注入代碼
if (typeof unsafeWindow !== 'undefined' && unsafeWindow.jQuery) {
initiateFlasher(unsafeWindow.jQuery);
} else {
function addScript(callback) {
var script = document.createElement('script');
script.text = '(' + callback.toString() + ')();';
document.body.appendChild(script);
}
addScript(initiateFlasher);
}
function initiateFlasher(arg) {}
謝謝!我看到它在Safari控制檯中抱怨initateFlasher()沒有先定義。 – Anteus