The below code error's out with URIError: malformed URI sequence?
when there is a %
sign like 60% - Completed
in the URL string from where I need to extract the parameter value e.g. %%20-%20Completed
<SCRIPT type="text/javascript">
function getParameterByName(name) {
name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
results = regex.exec(location.search);
return results == null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
}
</SCRIPT>
I dont have control of the server and need to process the output in my html page.
The below code error's out with URIError: malformed URI sequence?
when there is a %
sign like 60% - Completed
in the URL string from where I need to extract the parameter value e.g. http://some-external-server./info?progress=60%%20-%20Completed
<SCRIPT type="text/javascript">
function getParameterByName(name) {
name = name.replace(/[\[]/, "\\\[").replace(/[\]]/, "\\\]");
var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"),
results = regex.exec(location.search);
return results == null ? "" : decodeURIComponent(results[1].replace(/\+/g, " "));
}
</SCRIPT>
I dont have control of the server and need to process the output in my html page.
Share Improve this question asked Dec 20, 2013 at 9:33 StackedStacked 8612 gold badges12 silver badges24 bronze badges 2- 1 possible duplicate of Javascript decodeURI(Component) malformed uri exception – Christian Commented Jan 14, 2014 at 22:35
- Possible duplicate of Why does decodeURIComponent('%') lock up my browser? – Michał Perłakowski Commented Dec 29, 2015 at 9:26
1 Answer
Reset to default 7I think you need to URI encode the percentage sign as '%25'
http://some-external-server./info?progress=60%25%20-%20Completed
[EDIT]
I guess you could do something like this:
var str = "60%%20-%20pleted";
var uri_encoded = str.replace(/%([^\d].)/, "%25$1");
console.log(str); // "60%25%20-%20pleted"
var decoded = decodeURIComponent(uri_encoded);
console.log(decoded); // "60% - pleted"
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743627292a4480752.html
评论列表(0条)