将变量从Aweber传递到wordpress感谢页面-但是名称显示如下:
名字%20姓氏

使用的代码

    <script type="text/javascript">
 var formData = function() {  var query_string = (location.search) ? ((location.search.indexOf('#') != -1) ? location.search.substring(1, location.search.indexOf('#')) : location.search.substring(1)) : '';
var elements = [];
if(query_string) {
    var pairs = query_string.split("&");
    for(i in pairs) {
        if (typeof pairs[i] == 'string') {
            var tmp = pairs[i].split("=");
            var queryKey = unescape(tmp[0]);
            queryKey = (queryKey.charAt(0) == 'c') ? queryKey.replace(/s/g, "_") : queryKey;
            elements[queryKey] = unescape(tmp[1]);
             }
       }
 }
return {
    display: function(key) {
        if(elements[key]) {
             document.write(elements[key]);
         }
         else {
               document.write("<!--If desired, replace everything between these quotes with a default in case there is no data in the query string.-->");
          }
  }
}
}
(); </script>

then
    <script>// <![CDATA[
formData.display('fullname')
// ]]></script>


试过了
      encodeURI(formData.display(“全名”))
但这不起作用???
我已经搜寻了,无法找到答案-请任何人帮助吗???
谢谢。

最佳答案

我正在猜测它是Wordpress插件的一部分,所以您只需要一个正确的解决方法即可:)

尝试更换此部分:

return {
    display: function(key) {
        if(elements[key]) {
            document.write(elements[key]);
        } else {
            document.write("<!--If desired, replace everything between these quotes with a default in case there is no data in the query string.-->");
        }
    }
}


有了这个:

return {
    display: function(key) {
        if(elements[key]) {
            document.write(decodeURIComponent(elements[key]));
        } else {
            document.write("<!--If desired, replace everything between these quotes with a default in case there is no data in the query string.-->");
        }
    }
}

09-20 13:18