javascript – decodeURI将空间解码为符号

前端之家收集整理的这篇文章主要介绍了javascript – decodeURI将空间解码为符号前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我创建了一个Google自定义搜索.逻辑是当用户搜索时,页面显示结果,并且页面标题将使用 javascript更改为搜索词.我使用decodeURI解码unicode字符.但是这个空间被解码为.例如,如果我搜索钱,它将被解码为赚钱,并显示标题.有人请帮忙解决这个问题.我想显示空格而不是符号.

代码

if (query != null){document.title = decodeURI(query)+" | Tamil Search";}</script>

解决方法

出于这个原因,Google Closure Library提供了自己的urlDecode函数.您可以使用该库,或者下面是 open source solution,以了解它们如何解决它.
/**
 * URL-decodes the string. We need to specially handle '+'s because
 * the javascript library doesn't convert them to spaces.
 * @param {string} str The string to url decode.
 * @return {string} The decoded {@code str}.
 */
goog.string.urlDecode = function(str) {
  return decodeURIComponent(str.replace(/\+/g,' '));
};
原文链接:https://www.f2er.com/js/158781.html

猜你在找的JavaScript相关文章