js编码函数

 

  
  
  
  
  1. <html> 
  2. <head> 
  3.     <meta http-equiv="content-type" content="text/html; charset=utf-8"> 
  4.     <title>js编码函数</title> 
  5. </head> 
  6. <body> 
  7.      
  8. </body> 
  9. <script type="text/javascript"> 
  10. //编码 
  11. document.write(escape("hi 007!") + "<br />") 
  12. //解码 
  13. document.write(unescape("hi%20007%21") + "<br />") 
  14.  
  15. ////////////////////////////////////////////////// 
  16. //编码 
  17. document.write(encodeURI("http://0x007.blog.51cto.com/ my blog")+ "<br />")  
  18.  
  19. //解码 
  20. document.write(decodeURI("http://0x007.blog.51cto.com/%20my%20blog")) 
  21.  
  22. </script> 
  23.  
  24. </html> 

 

你可能感兴趣的:(js,js编码,js编码函数)