在javascript中的decodeURI不起作用

时间:2014-05-06 19:06:37

标签: javascript

我遇到了在JSP中显示数据的问题。在我的javascript代码中,我尝试解码该值,以便它可以正确显示在jsp中。让我来一个例如这里,

表示DB值存储为

  

医生的

当此值出现在javascript中时,它会被编码。

var dbValue = "Doctor's";  //say it gets populated from DB 
console.log(dbValue);//  i see output as Doctor'

// therefore i try to decode it so that correct value will be displayed
var escapedData = decodeURI(dbValue);
console.log("decodeURI" + escapedData); // it still prints Doctor's
                                        // though i was expecting it to print Doctor's

请让我知道是什么问题。我也试过unescape。此外,页面上没有错误

0 个答案:

没有答案