这就是我到目前为止所得到的
function onReady(callback) {
if (document.readyState === "complete") window.setTimeout(callback, 0);
else window.addEventListener("load", callback, false);
}
onReady(function() {
removeit("new");
});
function removeit() {
el = document.querySelector("#toolbarCurtain");
if (el) {
el.style.setProperty("display", "", null);
} * * EXEC COMMAND
return;
}
“ **EXEC COMMAND”是我要调用站点本身中的函数的地方。该函数称为drawPlayer(),当我在chrome控制台中键入drawPlayer()时,它可以工作。我不能让我的脚本调用该函数,我该怎么做?