URL Decoder/Encoder - -

来源:互联网 发布:源码交易app 编辑:程序博客网 时间:2024/05/18 02:32

出处:http://www.z4.cn/bbs/showthread.php?threadid=2939

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd">
<html>
<head>
<title>URL Decoder/Encoder</title>
<style type="text/css">
<!--
body {background: white; color: black;}
form {margin: 0;}
h1 {font-family: Arial, sans-serif; line-height: 0.85em; border-bottom: 2px solid; margin-bottom: 0.33em; padding-bottom: 0;}
textarea {background: #EEF;}
#footer {border-top: 1px solid #000; color: #999; font: italic 75% sans-serif;}
#footer p {margin: 0 0 1em 0;}
#footer img {float: right; margin: 0 0 0.5em 2em;}
-->
</style>
<script type="text/javascript">
function encode() {
 var obj = document.getElementById('dencoder');
 var unencoded = obj.value;
 obj.value = escape(unencoded);
}
function decode() {
 var obj = document.getElementById('dencoder');
 var encoded = obj.value;
 obj.value = unescape(encoded.replace(//+/g,  " "));
}
</script>
</head>
<body><form onsubmit="return false;"><h1>URL Decoder/Encoder</h1>
<textarea cols="80" rows="20" id="dencoder"></textarea>
<div><input type="button" onclick="decode()" value="Decode">
<input type="button" onclick="encode()" value="Encode"></div>
<ul><li>Input a string of text and encode or decode it as you like.</li>
<li>Handy for turning encoded JavaScript URLs from complete gibberish into readable gibberish.</li>
<li>If you'd like to have the URL Decoder/Encoder for offline use, just view source and save to your hard drive.</li></ul></form>
</body>
</html>

URL Decoder/Encoder
Not nearly as cool or flashy as the Color Blender, it's still useful for situations where a massively long encoded URL needs to be decoded. I wrote this one for me, but figured I'd throw it up here for anyone else who needed it.
原创粉丝点击