如何在java中的聊天应用程序中添加笑脸功能?

时间:2012-11-23 11:34:45

标签: java ajax jsp servlets

在我的聊天应用程序中,我需要添加笑脸功能吗?我怎样才能做到这一点?

我们正在使用“Genesys”来创建我们的聊天应用程序吗?

是否可以添加笑脸???

请有人帮助我..

提前致谢...

1 个答案:

答案 0 :(得分:6)

您可以执行此操作Pure CSS/JS Emoticons

您可以用图片替换文字。

查看示例,来源和 jsFiddle Demonstration

示例

var emoticons = {
  smile: '<img src="path/smile.gif" />',
  sad: '<img src="path/sad.gif" />',
  wink: '<img src="path/wink.gif" />'
};

var patterns = {
  smile: /:-\)/gm,
  sad: /:-\(/gm,
  wink: /;-\)/gm
};

$(document).ready(function() {
  $('p').each(function() {

  var $p = $(this);
  var html = $p.html();

  $p.html(html.replace(patterns.smile, emoticons.smile).
  replace(patterns.sad, emoticons.sad).
  replace(patterns.wink, emoticons.wink));  
 });
});

更多信息