JavaScript encodeURI() Function
JavaScript Functions
Definition and Usage
The encodeURI() function is used to encode a URI.
This function encodes special characters, with the exception of:
, / ? : @ & = + $ # (Use encodeURIComponent() to encode these characters).
Tip: Use the decodeURI() function to decode
an encoded URI.
Syntax
| Parameter |
Description |
| uri |
Required. The URI to be encoded |
Example
Example
Encode an URI:
<script type="text/javascript">
var uri="my test.asp?name=ståle&car=saab";
document.write(encodeURI(uri)+ "<br />");
</script>
|
The output of the code above will be:
|
my%20test.asp?name=st%C3%A5le&car=saab |
Try it yourself »
|
JavaScript Functions

The Altova MissionKit is an integrated suite of tools ideal for:
- XML development
- Web & Web services development
- Data mapping & integration
- Rendering & publishing XML & database data
- XBRL validation, taxonomy editing, transformation & rendering
The MissionKit for XML Developers includes XMLSpy® - the industry-leading XML editor; MapForce® - a
graphical data mapping, conversion, and integration tool; StyleVision® - a visual XSLT stylesheet designer;
DiffDog® - an XML-aware diff/merge tool; and 2 additional tools.
Try all 6 products free for 30 days!
Download a fully-functional free trial
|
|
|
|