js定时器、高亮修改单元格背景色

window.setInterval()

功能:按照指定的周期(以毫秒计)来调用函数或计算表达式。

语法:setInterval(code,millisec)

 

解释:code:在定时时间到时要执行的JavaScript代码串,js函数

millisec:设定的定时时间,用毫秒数表示。

返回值:定时器的ID值,可用于clearInterval()方法停止指定的定时器。

注:setInterval()方法会不停地调用函数,直到用clearInterval()终止定时或窗口被关闭。

window.clearInterval()

功能:取消由setInterval()方法设置的定时器。

语法:clearInterval(id_of_setinterval)

解释:id_of_setinterval:由setInterval()返回的ID值。该值标识了一个setInterval定时器。

也就是:window.setInterval()返回的就是window.clearInterval的参数

例子:

<script type="text/javascript">
var count = 0;
var timeID;
function timeCount()
{
  document.getElementByIdx('timetxt').value = count;
  count++;
}
function beginCount()
{
  timeID = setInterval("timeCount()",1000);
}
function stopCount()
{
  clearInterval(timeID);
}
</script>
<input type="button" value="开始计时" οnclick="beginCount()" />
<input type="text" id="timetxt" size="5" />
<input type="button" value="停止计时" οnclick="stopCount()" />
再如:
var objTimer = window.setInterval("moveDiv()",10)是调动定时器,其中moveDiv是js的一个函数

if(objTimer) window.clearInterval(objTimer)是停止定时器

 

2、单元格高亮变色

<script type="text/javascript">
      var k=0;
      function  highlightTableRows(tableId){
      k=k+1;
       var table = document.getElementById(tableId);  
       var tbody = table.getElementsByTagName("tbody")[0]; 
       if (tbody == null){ 
        var rows = table.getElementsByTagName("tr"); 
        } else { 
        var rows = tbody.getElementsByTagName("tr"); 
        }
        for(var i=0;i<rows.length;i++){
          var tds=rows[i].getElementsByTagName("td");
          var tdMax=0;
          for(var j=1;j<tds.length;j++){
            var strs=tds[j].innerHTML;
            var array=strs.split("/");
            var str=array[1];
            if(str>=1.8){
              tds[j].style.backgroundColor="red"; 
            }else if(str<1.8&&str>=1.35){
              tds[j].style.backgroundColor="yellow";
              console.log("yellow");
            }else if(str<1.35&&str>=1){
              //tds[j].style.backgroundColor="yello";
            }else if(str<1){
             tds[j].style.backgroundColor="green";
            }
            if(str>tdMax){
               tdMax=str;
            }
          }
          if(tdMax>=1.8){
              tds[0].style.backgroundColor="red"; 
            }else if(tdMax<1.8&&tdMax>=1.35){
              tds[0].style.backgroundColor="yellow";
            }else if(tdMax<1.35&&tdMax>=1){
              //tds[0].style.backgroundColor="yello";
            }else if(tdMax<1){
             tds[0].style.backgroundColor="green";
            } 
        } 
        if(k>15){
             window.clearInterval(timer);
        }   
     }
    var timer = window.setInterval("highlightTableRows('app')", 1000);
 </script>

 

部分引自:http://www.cnblogs.com/liences/archive/2011/11/25/2262883.html

转载于:https://www.cnblogs.com/Defry/p/4588357.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值