无明居
BlogJava
::
首页
::
新随笔
::
联系
::
聚合
::
管理
::
10 随笔 :: 0 文章 :: 1 评论 :: 0 Trackbacks
<
2006年7月
>
日
一
二
三
四
五
六
25
26
27
28
29
30
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
1
2
3
4
5
常用链接
我的随笔
我的评论
我的参与
最新评论
留言簿
(2)
给我留言
查看公开留言
查看私人留言
随笔分类
appserver
(rss)
java(1)
(rss)
linux(4)
(rss)
windows(1)
(rss)
收藏夹(4)
(rss)
随笔档案
2006年12月 (3)
2006年8月 (1)
2006年7月 (2)
2006年1月 (1)
2005年9月 (3)
搜索
最新评论
1. re: 在JSP中应用FCKeditor(2.1.1和FCKeditor.Java 2.3)
在最新的FCKeditor2.2和FCKeditor-2.3(JSP)配合中,上传文件的Upload按钮提交后,一直是不可提交状态,不能自动刷新,要手工刷现才可以,不知道你是否遇到这个问题!
--phoenixup
阅读排行榜
1. byte[]转换Hex(2588)
2. 在JSP中应用FCKeditor(2.1.1和FCKeditor.Java 2.3)(908)
3. ubuntu server 点滴(569)
4. SecureCRT传输数据(296)
5. Linux下软件的安装与卸载(转载)(291)
评论排行榜
1. 在JSP中应用FCKeditor(2.1.1和FCKeditor.Java 2.3)(1)
2. Linux下软件的安装与卸载(转载)(0)
3. windows平台整合apache2、php4及mysql(0)
4. 从源代码安装apache2(0)
5. install java on linux(0)
操作Cookie的javascript
1
//
utility function to retrieve an expiration date in proper
2
3
//
format; pass three integer parameters for the number of days, hours,
4
5
//
and minutes from now you want the cookie to expire (or negative
6
7
//
values for a past date); all three parameters are required,
8
9
//
so use zeros where appropriate
10
11
function
getExpDate(days, hours, minutes)
{
12
13
var
expDate
=
new
Date( );
14
15
if
(
typeof
days
==
"
number
"
&&
typeof
hours
==
"
number
"
&&
16
17
typeof
hours
==
"
number
"
)
{
18
19
expDate.setDate(expDate.getDate( )
+
parseInt(days));
20
21
expDate.setHours(expDate.getHours( )
+
parseInt(hours));
22
23
expDate.setMinutes(expDate.getMinutes( )
+
parseInt(minutes));
24
25
return
expDate.toGMTString( );
26
27
}
28
29
}
30
31
32
33
//
utility function called by getCookie( )
34
35
function
getCookieVal(offset)
{
36
37
var
endstr
=
document.cookie.indexOf (
"
;
"
, offset);
38
39
if
(endstr
==
-
1
)
{
40
41
endstr
=
document.cookie.length;
42
43
}
44
45
return
unescape(document.cookie.substring(offset, endstr));
46
47
}
48
49
50
51
//
primary function to retrieve cookie by name
52
53
function
getCookie(name)
{
54
55
var
arg
=
name
+
"
=
"
;
56
57
var
alen
=
arg.length;
58
59
var
clen
=
document.cookie.length;
60
61
var
i
=
0
;
62
63
while
(i
<
clen)
{
64
65
var
j
=
i
+
alen;
66
67
if
(document.cookie.substring(i, j)
==
arg)
{
68
69
return
getCookieVal(j);
70
71
}
72
73
i
=
document.cookie.indexOf(
"
"
, i)
+
1
;
74
75
if
(i
==
0
)
break
;
76
77
}
78
79
return
""
;
80
81
}
82
83
84
85
//
store cookie value with optional details as needed
86
87
function
setCookie(name, value, expires, path, domain, secure)
{
88
89
document.cookie
=
name
+
"
=
"
+
escape (value)
+
90
91
((expires)
?
"
; expires=
"
+
expires :
""
)
+
92
93
((path)
?
"
; path=
"
+
path :
""
)
+
94
95
((domain)
?
"
; domain=
"
+
domain :
""
)
+
96
97
((secure)
?
"
; secure
"
:
""
);
98
99
}
100
101
102
103
//
remove the cookie by setting ancient expiration date
104
105
function
deleteCookie(name,path,domain)
{
106
107
if
(getCookie(name))
{
108
109
document.cookie
=
name
+
"
=
"
+
110
111
((path)
?
"
; path=
"
+
path :
""
)
+
112
113
((domain)
?
"
; domain=
"
+
domain :
""
)
+
114
115
"
; expires=Thu, 01-Jan-70 00:00:01 GMT
"
;
116
117
}
118
119
}
120
121
posted on 2006-07-04 22:52
无明
阅读(250)
评论(0)
编辑
收藏
所属分类:
收藏夹
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
Chat2DB
C++博客
博问
管理
相关文章:
操作Cookie的javascript
byte[]转换Hex
在JSP中应用FCKeditor(2.1.1和FCKeditor.Java 2.3)
Linux下软件的安装与卸载(转载)
Powered by:
BlogJava
Copyright © 无明