drno94939847 2019-01-23 22:02 采纳率: 0%
浏览 190
已采纳

如何在javascript / jquery中打印unicode表情符号

I'm creating a chat room using Javascript/jQuery, PHP and Websockets. I want to support Unicode emoticons. I have a DIV with emoticons and, when user click in one of them, the emoticon is inserted in an input box. Simple.

User press "enter" and the text is sent to PHP. But PHP can't understand the emoticon (shows "??"), so I did a function in Javascript to convert to \uXXXX format (4-bytes) before submit to PHP.

Example:

1) User submits "test

  • 写回答

1条回答 默认 最新

  • dongying3830 2019-01-24 00:47
    关注

    Found a solution, thanks to @cegfault idea.

    Sending the string to JSON.parse function, it will show the emoticons correctly. But I had to escape the string to JSON format.

    $('#chat').append(JSON.parse('"'+d+'"'));
    

    Another way, not so secure, is the same idea but using eval() function, between quotes too.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?