首 页免费资源建站技术源码下载软件下载精品淘吧客户留言
用户登陆 | 用户注册
您当前的位置:笃志小屋建站技术特效代码技 巧 类 → 文章内容
用链接改变特定区域的背景及其它CSS样式的变换
作者:佚名  来源:不详  发布时间:2007-9-30 9:16:21

用链接改变特定区域的背景及其它CSS样式的变换



<!-- 要实现此效果需要 1 个步骤: -->

<!-- 第 1 步: -->
<!-- 把下面的代码加到<BODY></BODY>区域中: -->

<script language="Javascript" type="text/Javascript">
<!-- Begin
function showNewColor() {
// setup vars
var defaultColor = "white";
var newColor = "#ff9999";
if((document.getElementById)&& (document.getElementById('tagID')!=null)) {
// Get a reference to the element
var myElement = document.getElementById('tagID');
// Check the element's style object and background property are available
if ((myElement.style)&& (myElement.style.backgroundColor!=null)) {
// Check the value of the property
if(myElement.style.backgroundColor == 'white'){
// change style to new color
document.getElementById('tagID').style.backgroundColor = newColor;
}else {
// change style to default color
document.getElementById('tagID').style.backgroundColor = defaultColor;
}
}else {
// This CSS property is not assigned or is not supported
return;
}
}else {
return;
}
}
// End --->
</script>
<table id="tagID" style="background-color:white;" width="200" height="50" cellspacing="2" cellpadding="2">
<tr><td>这里是具体的内容
</td></tr>
</table>
<br><a href="javascript:showNewColor();">变换背景色</a>

2007-9-30 9:16:21免费资源duzhi.net

[ ] [返回上一页] [打 印]

【笃志小屋duzhi.net】

  技术文章导航
  技术文章排行
  精彩推荐
Copyright www.duzhi.net All Right Reserved.
设计制作:翼迅设计室 Equick Desgin Home 在线QQ:303471038
网络备案号:冀ICP备06008201号 站长信箱:webmaster#duzhi.net(将#换为@)
本站部分文章和图片来源于网络和内容提供伙伴,如果侵犯了您的权利,请留言告知,本站定会及时删除相关文件!