js中一些常用方法

js进行页面跳转

<script type="text/javascript"> window.location.href="(要跳转的页面地址)"</script>

js进行移入移出行变色

<script type="text/javascript">
var lastColor = "";
function ChangeColor(trObj) {
lastColor = trObj.style.backgroundColor;
trObj.style.backgroundColor = "#66BDFF";
}
function changeBCColor(trObj) {
trObj.style.backgroundColor = lastColor;
}

</script>

<tr onmouseover="ChangeColor(this)" onmouseout="changeBCColor(this)">

 

posted @ 2013-02-21 11:14  ~峰~  阅读(152)  评论(0)    收藏  举报