码迷,mamicode.com
首页 > 其他好文 > 详细

前端日常使用笔记

时间:2016-01-09 10:53:33      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:

****************时间调用函数 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; }


 

前端日常使用笔记

标签:

原文地址:http://www.cnblogs.com/Feng-Scorpio/p/5011099.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!