JavaScript 字符规范化
我正在使用 Google Translate API,如果我尝试翻译 Mc Donald's,我得到的结果是:
Mc Donald's
< /strong>
如何在 JavaScript 中将 '
翻译为 '
等等是否有任何其他数字字符参考? 谢谢!
I'm using Google Translate API, and if I try to translate Mc Donald's this is what I get as a result:
Mc Donald's
How can I translate '
to '
-- in JavaScript -- and so on for any other numeric character reference?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
检查这两个:
PHP 的 html_entity_decode 的 Javascript 等效项
及其依赖项:
PHP 的 get_html_translation_table 的 Javascript 等效项
Check those two:
Javascript equivalent for PHP's html_entity_decode
And its dependence:
Javascript equivalent for PHP's get_html_translation_table
JS 库通常有辅助 api,例如 Prototype 在 String 上有 unescapeHTML() 函数,效果非常好,请注意示例:
http://prototypejs.org/api/string/unescapeHTML
JS libraries often have helper api's for this, Prototype for example has its unescapeHTML() function on String that works perfect, notice the examples:
http://prototypejs.org/api/string/unescapeHTML
像这样的事情不应该做吗?
Shouldn't something like this do it?