tambc
BlogJava
首页
新随笔
联系
聚合
管理
5 Posts :: 21 Stories :: 5 Comments :: 0 Trackbacks
常用链接
我的随笔
我的评论
我的参与
最新评论
留言簿
(2)
给我留言
查看公开留言
查看私人留言
随笔档案
2007年2月 (2)
2006年12月 (3)
文章分类
Ajax
C#(1)
Delphi(3)
Hibernate(1)
Java(14)
JavaScript(7)
Oracle
Spring
SQLServer(1)
Struts
全文检索(3)
工作流学习
文章档案
2007年2月 (1)
2007年1月 (1)
2006年12月 (16)
搜索
最新评论
1. re: textarea控制字符数
收益匪浅
--ljh
2. re: textarea控制字符数
评论内容较长,点击标题查看
--fdsa
3. re: 免费部署 与同时访问此网页的网友聊天[未登录]
股票
--秋风
4. re: 实现HTTP长连接(服务器推)
yao lianjie
--张伟
5. re: 近来使用velocity来生成网站静态页面
re: 近来使用velocity来生成网站静态页面的地址
--gv
阅读排行榜
1. 近来使用velocity来生成网站静态页面(1381)
2. 转:基于Java的开源 Carrot2 搜索结果聚合聚类引擎 2.0(688)
3. 使用C3P0时一个怪异的事情(462)
4. 用JS让查看源代码时什么也看不到(402)
5. 免费部署 与同时访问此网页的网友聊天(312)
评论排行榜
1. 免费部署 与同时访问此网页的网友聊天(1)
2. 近来使用velocity来生成网站静态页面(1)
3. 用JS让查看源代码时什么也看不到(0)
4. 转:基于Java的开源 Carrot2 搜索结果聚合聚类引擎 2.0(0)
5. 使用C3P0时一个怪异的事情(0)
美化文件上传界面
1
<
head
>
2
<
style
>
3
*
{
}
{
font-size
:
12px
;
cursor
:
default
}
4
.hand
{
}
{
cursor
:
hand
;
cursor
:
pointer
}
5
</
style
>
6
</
head
>
7
8
<
body
>
9
<
form
name
=fm1
>
10
<
div
id
=bxAttList
>
11
<
div
id
=bxAtt
onmouseover
="$(’bxAtt1’).style.textDecoration=’underline’"
onmouseout
="$(’bxAtt1’).style.textDecoration=’’"
style
=float:left;width:60
>
12
<
span
id
=bxAtt1
style
=’position:absolute;padding-top:3;cursor:hand;font-family:宋体’
>
@添加附件
</
span
>
13
<
span
id
=bxAtt2
onmouseover
=this.scrollLeft=100
style
=position:absolute;width:60;overflow:hidden;filter:alpha(opacity=0);-moz-opacity:0
></
span
>
14
</
div
>
15
</
div
>
16
</
form
>
17
</
body
>
18
<
script
>
19
file_create()
20
function
file_create()
{
21
$(
"
bxAtt2
"
).innerHTML
=
"
<input onchange=file_change(this) hidefocus type=file name=file1 size=1 class=hand>
"
22
}
23
function
file_change(tx)
{
24
var
sName,o
25
sName
=
tx.value.replace(
/
\\
/
g,
"
/
"
).replace(
/
(.
*
\
/
)(.
*
)
/
,
"
$2
"
)
26
o
=
document.createElement(
"
nobr
"
)
27
o.style.cssText
=
"
float:left;margin-right:6;padding-top:3;color:darkgreen
"
28
o.innerHTML
=
"
□
"
+
sName
+
"
<font onclick=$(’bxAttList’).removeChild(this.parentNode);file_repos() class=hand style=color:red;font-weight:bold>
"
+
unescape(
"
%d7
"
)
+
"
</font>
"
29
tx.style.display
=
"
none
"
30
o.appendChild(tx)
31
$(
"
bxAttList
"
).insertBefore(o,$(
"
bxAtt
"
))
32
file_repos()
33
file_create()
34
}
35
function
file_repos()
{
36
$(
"
bxAttList
"
).appendChild($(
"
bxAtt
"
))
37
}
38
function
$(obj)
{
39
return
typeof
(obj)
==
"
object
"
?
obj:document.getElementById(obj)
40
}
41
</
script
>
posted on 2006-12-21 11:41
tambc
阅读(501)
评论(0)
编辑
收藏
所属分类:
JavaScript
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
Chat2DB
C++博客
博问
管理
相关文章:
Ajax客户端发起的禁止使用Cache的指令
防止Combox浮在最上层的方法
美化文件上传界面
在WEB页中实现表头表脚和打印分页
textarea控制字符数
文件上传前台控制检测程序
Powered by:
BlogJava
Copyright © tambc