****************时间调用函数 setTimeout()
setTimeout(function(){......},1000) ;//方法 - 多长时间后,执行
衍生:
无限循环
var c=0;
var t;
function timedCount()
{
alert(c);
c=c+1;
t=setTimeout("timedCount()",1000);
}
停止
*****************JS 去除空格:
str为要去除空格的字符串: 去除所有空格: str = str.replace(/\s+/g,""); 去除两头空格: str = str.replace(/^\s+|\s+$/g,""); 去除左空格: str=str.replace( /^\s*/, ‘‘); 去除右空格: str=str.replace(/(\s*$)/g, ""); ********************CSS 禁用鼠标点击事件
.disabled { pointer-events: none; }
时间: 2024-10-22 00:48:28