gpt4 book ai didi

javascript - Uncaught ReferenceError : function is not defined with onclick

转载 作者:IT王子 更新时间:2023-10-29 02:52:56 24 4
gpt4 key购买 nike

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

函数如下:

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 属性的按钮时,都会出现此错误:

Uncaught ReferenceError: function is not defined.

更新

我尝试使用:

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错误。

这是 script .

我尝试这样做是为了测试听众是否工作,而他们不适合我:

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);

最佳答案

切勿使用 .onclick() 或用户脚本中的类似属性!(它也是 poor practice in a regular web page )。

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

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

所以不要像这样的代码:

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


你会使用:

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

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

对于循环,您不能像那样将数据传递给事件监听器,请参阅 the 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 时,您都会丢弃受影响节点上的所有事件处理程序。如果您使用此方法,请注意这一事实。

关于javascript - Uncaught ReferenceError : function is not defined with onclick,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17378199/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com