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)">
世上没有绝望的处境,只有对处境绝望的人...
浙公网安备 33010602011771号