gpt4 book ai didi

javascript - 循环总是返回数组的最后一个值

转载 作者:行者123 更新时间:2023-12-03 12:35:08 26 4
gpt4 key购买 nike

目前在 TinyMCE 4 中,我正在尝试将表情符号添加为工具栏中的按钮。

下面的代码工作正常,我可以看到工具栏中的所有按钮:

var array = ['applause', 'bumping', 'cool', 'cry', 'grin', 'happy', 'laughing', 'notalking', 'sad', 'wink'];

for (var i in array) {

editor.addButton(array[i], {
title: '',
icon: true,
image: 'img/smileys/'+ array[i] +'.gif',
onclick: function() {
editor.execCommand('mceInsertContent', false, '<img src="img/smileys/'+ array[i] +'.gif">');
}
});

}

但是,array[i]editor.execCommand行,始终将其值返回为 wink (数组的最后一个值)。同时, array[i] 的另外两个实例在代码中工作得很好。

最佳答案

关闭i

for (var i in array) {
new function(){
var iCopy = i;
editor.addButton(array[iCopy ], {
title: '',
icon: true,
image: 'img/smileys/'+ array[iCopy ] +'.gif',
onclick: function() {
editor.execCommand('mceInsertContent', false, '<img src="img/smileys/'+ array[iCopy ] +'.gif">');
}
});
}
}

关于javascript - 循环总是返回数组的最后一个值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23770825/

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