25th,九月,2009

使用javascript切换dom元素显示状态

方式一:
document.getElementById('element').style.display = '';
document.getElementById('element').style.display = 'none';
15th,九月,2009

checkbox 选中一个

<div id=”choice_checkbox”>
<input type=”checkbox” name=”" onclick=”choice_checkbox(0)”/>
<input type=”checkbox” name=”" onclick=”choice_checkbox(1)”/>
<input type=”checkbox” na[......]

继续阅读

15th,九月,2009

a去掉虚线

.wrap{position:relative;}
.btns{zoom:1;}
.btns *{outline:0;zoom:1;background:#f2f2f2;}
14th,九月,2009

页面跳转

<meta http-equiv=”refresh” content=”5;URL=http://www.baidu.com“>

第一种:
    <script language=“javascript” type=“text/javascript”>
           window.location.href=
“login.jsp?backurl=”+window[......]

继续阅读

9th,九月,2009

最小宽度 css

.wrap{
min-width: 950px;
*width: expression( document.body.clientWidth < 950 ? "950px" : "100%" );
}