本文實例講述了JavaScript使用encodeURI()和decodeURI()取得字串值的方法。分享給大家供大家參考。具體如下:
JavaScript使用encodeURI()和decodeURI()取得字串值,不能就是網址列顯示的字串,以前常在網路上見到有人問此問題,無意在網路上發現,不知是不是您想要的,先看看效果吧。
先來看看運行效果:
具體程式碼如下:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> <title>使用系统函数</title> <script language="JavaScript"> <!-- function showMsg() { var strURL= url.value; var encodeStr = encodeURI(strURL); var temp = encodeStr+"\n"; temp += decodeURI(encodeStr); alert(temp); } --> </script> </head> <body> <div> 请输入一个URL:<input name="url" type="text" id="url" value="/search.php?keyword=搜索关键字" size="60" /> <input type="submit" name="button" id="button" value="我要提交" onclick="showMsg();" /></div> <dIV class="vc" style="margin: 20px auto" > <h2>使用encodeURI()和decodeURI()函数:</h2> </dIV> </body> </html>
希望本文所述對大家的javascript程式設計有所幫助。