城市猎人
在一网情深的日子里,谁能说得清是苦是甜,只知道确定了就义无反顾
posts - 1, comments - 7, trackbacks - 0, articles - 89
导航
BlogJava
首页
新随笔
联系
聚合
管理
<
2024年11月
>
日
一
二
三
四
五
六
27
28
29
30
31
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
1
2
3
4
5
6
7
常用链接
我的随笔
我的文章
我的评论
我的参与
最新评论
留言簿
(3)
给我留言
查看公开留言
查看私人留言
文章分类
(90)
AJAX-DWR/EXT/JQUERY(1)
EJB3(5)
Glassfish(2)
Hibernate(1)
ibatis(2)
java(12)
javascript(4)
linux(3)
mysql(1)
oracle(28)
others
PowerDesigner(1)
Solaris(2)
spring(5)
struts(2)
struts2(2)
weblogic(1)
分录(2)
心得体会(1)
模式(12)
网络笔试题集(1)
错误集(1)
锤炼(1)
文章档案
(90)
2012年8月 (1)
2011年12月 (1)
2011年11月 (1)
2011年8月 (2)
2011年3月 (1)
2010年6月 (1)
2009年9月 (1)
2009年8月 (4)
2009年7月 (2)
2009年6月 (1)
2009年4月 (5)
2009年3月 (3)
2009年1月 (2)
2008年12月 (8)
2008年11月 (5)
2008年10月 (7)
2008年9月 (3)
2008年8月 (6)
2008年7月 (33)
2008年5月 (3)
收藏夹
(12)
Ext
Hibernate
Ibatis(2)
J2EE(1)
J2SE(4)
Jquery
Mysql
Oracle(1)
Spring
strtus
Struts2(3)
Weblogic
下载地址(1)
设计模式
软件工程
搜索
最新评论
1. re: AOP之静态代理和动态代理
@AloneAli不好意思,弄错了。代理模式是种模式。。。不是装饰者模式。
--AloneAli
2. re: AOP之静态代理和动态代理
实质就是装饰者模式?
--AloneAli
3. re: struts与jquery整合[未登录]
学习下!
--力
4. re: struts与jquery整合
很好,很强大,谢谢了
--f
5. re: struts与jquery整合
thanks
--ami
隐藏显示frame
Posted on 2009-01-11 11:27
sailor
阅读(890)
评论(0)
编辑
收藏
所属分类:
javascript
思路:通过子frame改变父frame的cols设置实现父fame的隐藏。
center.html:父frame
1
<
frameset
cols
='169,14,*'
rows
='*'
frameborder
='NO'
border
='0'
id
="oa_frame"
>
2
<
frame
id
="le"
name
='leftarea'
src
='left.jsp'
MARGINWIDTH
=0
MARGINHEIGHT
=0
SCROLLING
='NO'
/>
3
<
frame
name
=middleframe
src
='middel.html'
scrolling
='NO'
frameborder
='NO'
noresize
>
4
<
frame
name
='main'
src
='login.html'
MARGINWIDTH
=0
MARGINHEIGHT
=0
frameborder
='no'
scrolling
='no'
noresize
/>
5
</
frameset
>
middel.html:用于控制center.html中leftarea的隐藏与显示
1
<
html
xmlns
="http://www.w3.org/1999/xhtml"
>
2
<
head
>
3
<
meta
http-equiv
="Content-Type"
content
="text/html; charset=gb2312"
/>
4
<
title
>
无标题文档
</
title
>
5
<
style
type
="text/css"
>
6
<!--
7
body
{
}
{
8
margin-left
:
0px
;
9
margin-top
:
0px
;
10
margin-right
:
0px
;
11
margin-bottom
:
0px
;
12
}
13
-->
14
</
style
>
15
<
style
>
16
.navPoint
{
}
{
17
COLOR
:
white
;
CURSOR
:
hand
;
FONT-FAMILY
:
Webdings
;
FONT-SIZE
:
9pt
18
}
19
</
style
>
20
<
script
>
21
function
switchSysBar()
{
22
var
locate
=
location.href.replace('middel.html','');
23
var
ssrc
=
document.getElementById(
"
img1
"
).src.replace(locate,'');
24
if
(ssrc
==
"
images/main_55.gif
"
)
25
{
26
document.getElementById(
"
img1
"
).src
=
"
images/main_55_1.gif
"
;
27
window.parent.document.getElementById(
"
oa_frame
"
).cols
=
"
0,16,*
"
;
28
}
29
else
30
{
31
document.getElementById(
"
img1
"
).src
=
"
images/main_55.gif
"
;
32
window.parent.document.getElementById(
"
oa_frame
"
).cols
=
"
169,16,*
"
;
33
}
34
}
35
</
script
>
36
37
</
head
>
38
39
<
body
style
="overflow:hidden"
>
40
<
table
width
="100%"
height
="100%"
border
="0"
cellpadding
="0"
cellspacing
="0"
style
="table-layout:fixed;"
>
41
<
tr
>
42
<
td
width
="6"
style
="width:6px;"
valign
="middle"
bgcolor
="1873aa"
onclick
=switchSysBar()
>
43
<
SPAN
class
=navPoint
id
=switchPoint
title
=关闭/打开左栏
>
44
<
img
src
="images/main_55.gif"
name
="img1"
width
=6
height
=40
id
=img1
>
45
</
SPAN
>
46
</
td
>
47
</
tr
>
48
</
table
>
49
</
body
>
50
</
html
>
51
新用户注册
刷新评论列表
只有注册用户
登录
后才能发表评论。
网站导航:
博客园
IT新闻
知识库
C++博客
博问
相关文章:
Javascript生成工具
隐藏显示frame
RGB对应表
动态增加、减少表格
Powered by:
BlogJava
Copyright © sailor