Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/javascript/423.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Javascript 将文本替换为表情符号(在Forumotion上)_Javascript_Jquery_Emoticons - Fatal编程技术网

Javascript 将文本替换为表情符号(在Forumotion上)

Javascript 将文本替换为表情符号(在Forumotion上),javascript,jquery,emoticons,Javascript,Jquery,Emoticons,Forumotion有一个表情符号的kb限制,这使得不可能放置许多50 x 50的GIF 一个人给了我一个ccode,但是它用img alt替换了图片的文本,并且用alt上相同的值替换了论坛上的每个图片。所以,我想用文本来做,并尽可能添加更多的表情符号 代码如下: var Smileys; Smileys = { 'Xuxa mandando beijo' : 'http://i738.photobucket.com/albums/xx29/forummultix/emoticons/xuxa

Forumotion有一个表情符号的kb限制,这使得不可能放置许多50 x 50的GIF

一个人给了我一个ccode,但是它用img alt替换了图片的文本,并且用alt上相同的值替换了论坛上的每个图片。所以,我想用文本来做,并尽可能添加更多的表情符号

代码如下:

var Smileys;

Smileys = {
'Xuxa mandando beijo' : 'http://i738.photobucket.com/albums/xx29/forummultix/emoticons/xuxa2_zps1da72f7f.gif',
'Nazaré Tedesco' : 'http://i738.photobucket.com/albums/xx29/forummultix/emoticons/naza1_zps357c14c3.gif', 
'Tiffany Pollard' : 'http://i738.photobucket.com/albums/xx29/forummultix/emoticons/ny04-2_zpse5e92df0.gif',
'Tiffany' : 'http://i738.photobucket.com/albums/xx29/forummultix/emoticons/ny012_zpsa64e9a2e.gif',
'Tiff' : 'http://i738.photobucket.com/albums/xx29/forummultix/emoticons/ny01_zps22380ffc.gif',
'Ines Brasil' : 'http://i738.photobucket.com/albums/xx29/forummultix/ines_zps10449d33.gif',
'Xuxa' : 'http://i738.photobucket.com/albums/xx29/forummultix/emoticons/XUXY_zpsfdecaffd.gif',
'Eita' : 'http://i738.photobucket.com/albums/xx29/forummultix/emoticons/susto_zpsfb783142.gif',
'Sofrendo' : 'http://i738.photobucket.com/albums/xx29/forummultix/emoticons/17_zps45611787.gif',
'Lara com Z' : 'http://i738.photobucket.com/albums/xx29/forummultix/emoticons/Lara7_zps32c7c5d6.gif',
'666' : 'http://i738.photobucket.com/albums/xx29/forummultix/emoticons/666_zps88fd6d96.gif',
'Xuxa chorando' : 'http://i738.photobucket.com/albums/xx29/forummultix/1CHORO_zpscc0f91e1.gif',
'Puta que pariu' : 'http://i738.photobucket.com/albums/xx29/forummultix/emoticons/putaquepariu_zpsbcd6baa1.gif',
'Gretchen' : 'http://i738.photobucket.com/albums/xx29/forummultix/emoticons/gretchensaindo_zpsbb7eafc6.gif',
'eliana nojo' : 'http://i738.photobucket.com/albums/xx29/forummultix/eliananojo_zpsc1660c97.gif',
'Sônia Abrão' : 'http://i738.photobucket.com/albums/xx29/forummultix/emoticons/sonia_zpsd5b4b8d9.gif',
'Mas não se irrite' : 'http://i738.photobucket.com/albums/xx29/forummultix/emoticons/semquererr_zpsbff4f60f.gif',
'Falta de sacanagem' : 'http://i738.photobucket.com/albums/xx29/forummultix/emoticons/putafaltadesacanagem_zps162a2df9.gif',
};

$(function() {
$.each(Smileys, function(key, value) {
    $('img[alt="' + key + '"]').attr('src', value);
});
});