我正在尝试将 Joomla 1.5 插件转换为 Joomla 2.5 插件。当这个插件正在运行时,Firebug 说 `TypeError: document.getElement is not a function。这是我的代码....
var btn = document.getElement("#imageForm fieldset div [onclick=\"\"]");
console.log(btn);
if (btn.getAttribute("onclick").indexOf("ImageManager") > -1 )
{
if (typeof window.parent.'.$request['rewrite_function'].' === "function")
{
btn.setAttribute("onclick",btn.getAttribute("onclick").replace("ImageManager.onok()","window.parent.'.$request['rewrite_function'].'()"))
}
}
我已经坚持了几个小时了,我无法让它工作。你能告诉我这个javascript有什么问题吗,或者至少给我指出正确的方向。