码迷,mamicode.com
首页 > 其他好文 > 详细

cookie中存中文

时间:2017-03-15 00:43:54      阅读:469      评论:0      收藏:0      [点我收藏+]

标签:alt   教材   value   images   script   com   type   javascrip   image   

cookie中存中文

1:想要在cookie中存中文:需要用到URLEncoder(在jdkAPI中有介绍)

 技术分享

 

 

Cookie cookie = new Cookie("User",URLEncoder.encode(要编码的参数,"utf-8"));(编码后页面需要解码)

2:页面解码:

用js 解码。

w3c菜鸟教材中  EncoderURL可以完成解码操作:

技术分享

技术分享

技术分享

技术分享

 

事例代码:
<script type="text/javascript">
window.onload = function(){
var date = "${cookie.username.value}";
var username = decodeURI(date);
document.getElementById("_un").value = username;
}
</script>

cookie中存中文

标签:alt   教材   value   images   script   com   type   javascrip   image   

原文地址:http://www.cnblogs.com/daishiwen/p/6551406.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!