孙安俊ID:edusaj
22357次访问,排名5122(1)好友0人,关注者0
edusaj的文章
原创 20 篇
翻译 0 篇
转载 4 篇
评论 24 篇
edusaj的公告
    这里记录着我的所思所想,我要用这种方式来记录下自己的成长历程,用我的历程与大家分享,如果能对大家有一点帮助,我就感到无比的欣慰,我会一直努力这样做,就让我一直这样做下去吧,生活终究会有一个结果!

Ema:edusaj@126.com
Pop:edusaj
Msn:edusaj@hotmail.com Hom:http://1388.com.cn

天气

最近评论
zhh007:thanks
fancy:Hi,我最近要忙一个学校的毕业设计,是关于Jmail的,看到你的blog上有一篇文章,我不是很明白里面的一个类叫Auth。希望能指教,谢谢!
我的邮箱是fancy113#gmail.com
wang2855:不错,我就是用错了导致数据不正确的。一般用
ON COMMIT DELETE ROWS
fish:请给我发一份吧!

blueflyfish@hotmail.com


谢谢!
edusaj:以上朋友需要gmail邮箱的邀请的已经发送,请查收!
文章分类
收藏
相册
女儿睿睿
links
try...catch(RSS)
存档
软件项目交易
订阅我的博客
XML聚合  FeedSky
订阅到鲜果
订阅到Google
订阅到抓虾
订阅到BlogLines
订阅到Yahoo
订阅到GouGou
订阅到飞鸽
订阅到Rojo
订阅到newsgator
订阅到netvibes

转载 URL Decoder/Encoder - -收藏

新一篇: 使用links方式安装Eclipse插件 | 旧一篇: 一些常用的Eclipse 3.0的插件

出处: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.

发表于 @ 2005年08月11日 15:02:00|评论(loading...)|编辑

新一篇: 使用links方式安装Eclipse插件 | 旧一篇: 一些常用的Eclipse 3.0的插件

评论:没有评论。

发表评论  


当前用户设置只有注册用户才能发表评论。如果你没有登录,请点击登录
Csdn Blog version 3.1a
Copyright © edusaj