未捕获的ReferenceError:函数未使用onclick定义


84

我正在尝试为网站添加自定义表情的用户脚本。但是,我遇到了很多错误。

这是函数:

function saveEmotes() {
    removeLineBreaks();
    EmoteNameLines = EmoteName.value.split("\n");
    EmoteURLLines = EmoteURL.value.split("\n");
    EmoteUsageLines = EmoteUsage.value.split("\n");

    if (EmoteNameLines.length == EmoteURLLines.length && EmoteURLLines.length == EmoteUsageLines.length) {
        for (i = 0; i < EmoteURLLines.length; i++) {
            if (checkIMG(EmoteURLLines[i])) {
                localStorage.setItem("nameEmotes", JSON.stringify(EmoteNameLines));
                localStorage.setItem("urlEmotes", JSON.stringify(EmoteURLLines));
                localStorage.setItem("usageEmotes", JSON.stringify(EmoteUsageLines));
                if (i == 0) {
                    console.log(resetSlot());
                }
                emoteTab[2].innerHTML += '<span style="cursor:pointer;" onclick="appendEmote(\'' + EmoteUsageLines[i] + '\')"><img src="' + EmoteURLLines[i] + '" /></span>';
            } else {
                alert("The maximum emote(" + EmoteNameLines[i] + ") size is (36x36)");
            }
        }
    } else {
        alert("You have an unbalanced amount of emote parameters.");
    }
}

span标签的onclick调用该函数:

function appendEmote(em) {
    shoutdata.value += em;
}

每次单击具有onclick属性的按钮时,都会出现此错误:

未捕获的ReferenceError:函数未定义。

任何帮助,将不胜感激。

谢谢!

更新资料

我尝试使用:

emoteTab[2].innerHTML += '<span style="cursor:pointer;" id="'+ EmoteNameLines[i] +'"><img src="' + EmoteURLLines[i] + '" /></span>';
document.getElementById(EmoteNameLines[i]).addEventListener("click", appendEmote(EmoteUsageLines[i]), false);

但是我有一个undefined错误。

这是脚本

我试图这样做来测试听众是否正常工作,但他们不适合我:

emoteTab[2].innerHTML = '<td class="trow1" width="12%" align="center"><a id="togglemenu" style="cursor: pointer;">Custom Icons</a></br><a style="cursor: pointer;" id="smilies" onclick=\'window.open("misc.php?action=smilies&amp;popup=true&amp;editor=clickableEditor","Smilies","scrollbars=yes, menubar=no,width=460,height=360,toolbar=no");\' original-title="">Smilies</a><br><a style="cursor: pointer;" onclick=\'window.open("shoutbox.php","Shoutbox","scrollbars=yes, menubar=no,width=825,height=449,toolbar=no");\' original-title="">Popup</a></td></br>';
document.getElementById("togglemenu").addEventListener("click", changedisplay,false);

1
仅发布相关代码。阅读规则。
2013年

1
除了应该在您的帖子中找到的相关代码段之外,指向完整脚本的链接始终是适当的并且值得赞赏。
Brock Adams 2013年

Answers:


131

切勿使用.onclick()或用户脚本中的类似属性!在常规网页中,这也是一种较差的做法)。

原因是用户脚本在沙箱(“隔离的世界”)中onclick运行,并且在目标页面范围内运行,并且看不到脚本创建的任何功能。

始终使用addEventListener()Doc(或等效的库函数,如jQuery .on())。

因此,而不是像这样的代码:

something.outerHTML += '<input onclick="resetEmotes()" id="btnsave" ...>'


您将使用:

something.outerHTML += '<input id="btnsave" ...>'

document.getElementById ("btnsave").addEventListener ("click", resetEmotes, false);

对于循环,您无法将数据传递给类似See doc的事件侦听器。再加上每次您进行这样的更改innerHTML,都将破坏以前的事件侦听器!

无需大量重构代码,就可以通过数据属性传递数据。因此,使用如下代码:

for (i = 0; i < EmoteURLLines.length; i++) {
    if (checkIMG (EmoteURLLines[i])) {
        localStorage.setItem ("nameEmotes", JSON.stringify (EmoteNameLines));
        localStorage.setItem ("urlEmotes", JSON.stringify (EmoteURLLines));
        localStorage.setItem ("usageEmotes", JSON.stringify (EmoteUsageLines));
        if (i == 0) {
            console.log (resetSlot ());
        }
        emoteTab[2].innerHTML  += '<span style="cursor:pointer;" id="' 
                                + EmoteNameLines[i] 
                                + '" data-usage="' + EmoteUsageLines[i] + '">'
                                + '<img src="' + EmoteURLLines[i] + '" /></span>'
                                ;
    } else {
        alert ("The maximum emote (" + EmoteNameLines[i] + ") size is (36x36)");
    }
}
//-- Only add events when innerHTML overwrites are done.
var targetSpans = emoteTab[2].querySelectorAll ("span[data-usage]");
for (var J in targetSpans) {
    targetSpans[J].addEventListener ("click", appendEmote, false);
}

其中appendEmote是这样的:

function appendEmote (zEvent) {
    //-- this and the parameter are special in event handlers.  see the linked doc.
    var emoteUsage  = this.getAttribute ("data-usage");
    shoutdata.value += emoteUsage;
}


警告:

  • 您的代码对多个元素重复使用相同的ID。不要这样做,这是无效的。给定的ID每页只能出现一次。
  • 每次使用.outerHTML或时.innerHTML,都会在受影响的节点上丢弃所有事件处理程序。如果使用此方法,请当心这一事实。

1
我收到此错误:未捕获的TypeError:对象3没有方法'addEventListener'–
ECMAScript

那你做错了。链接到产生该错误的完整脚本,并链接到运行该脚本的目标页面。
Brock Adams

2
修复了我使用的问题:btnreset.onclick = function(){resetEmotes(); }; 谢谢!
ECMAScript

很高兴您能使用,但是该技术仅在某些条件下有效,并且不便于移植。
Brock Adams

我的代码确实编码不正确,所以我要重新编码整个内容并使用jQuery。谢谢!
ECMAScript 2013年


-2

如果在html中使用该函数时未定义该函数,例如onclick ='function()',则意味着该函数位于回调中,在我的情况下为'DOMContentLoaded'。


1
这不是答案。您可以将其发布为评论(通过建立适当的声誉)。请阅读我如何写一个好的答案?
EhsanT
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.