Explain unescape() and escape() in JavaScript?
Submitted by: AdministratorThese are similar to the decodeURI() and encodeURI(), but escape() is used for only portions of a URI.
<script type="text/javascript">
var myvalue = "Sir Robbert Scott";
document.write("Original myvalue: "+myvalue);
document.write("<br />escaped: "+escape(myvalue));
document.write("<br />uri part: "&author="+escape(myvalue)+""");
</script>
If you use escape() for the whole URI... well bad things happen.
<script type="text/javascript">
var uri = "http://www.google.com/search?q=Online Web Tutorials"
document.write("Original uri: "+uri);
document.write("
escaped: "+escape(uri));
</script>
Submitted by: Administrator
<script type="text/javascript">
var myvalue = "Sir Robbert Scott";
document.write("Original myvalue: "+myvalue);
document.write("<br />escaped: "+escape(myvalue));
document.write("<br />uri part: "&author="+escape(myvalue)+""");
</script>
If you use escape() for the whole URI... well bad things happen.
<script type="text/javascript">
var uri = "http://www.google.com/search?q=Online Web Tutorials"
document.write("Original uri: "+uri);
document.write("
escaped: "+escape(uri));
</script>
Submitted by: Administrator
Read Online JavaScript Job Interview Questions And Answers
Top JavaScript Questions
☺ | Are Java and JavaScript the Same? |
☺ | Explain unescape() and escape() in JavaScript? |
☺ | How to make elements invisible? |
☺ | How to test for bad numbers using JavaScript? |
☺ | What is the difference between an alert box and a confirmation box? |
Top Top World Wide Web Categories
☺ | Cascading Style Sheet CSS Interview Questions. |
☺ | HTML5 Interview Questions. |
☺ | Basic Internet Interview Questions. |
☺ | Domain Name System (DNS) Interview Questions. |
☺ | JavaScript Interview Questions. |