0/0 ==> NaN(Not a Number)
可以通过isNaN()检测值是否为NaN
转意符
var a = 'king\'s'
alert (a);
alert(null == undifined) //true
alert(null === undifined) //false 数据值相等 类不相等
' 单引号
\n 回车换行
\r 换行
\t 水平制表符
可变参数
function sum()
{
var paramsNum = arguments.length; //将parameters的个数传入variable
var sum = 0;
for(var i=0; i <paramsNum; i++)
{
sum += argument[i];
}
return sum;
}
自执行函数
(function(){
}) (); //好处是把所有js代码中的variables 当做local variables
// 因为经常用到第三方库 避免和其他global variables 重名
//并且自动执行function call
在chrome 中 highlight 选中项 在console里打 “$0(zero)” 会显示出当前项中的 root node
document.querySelector('div') //只选到第一个tag
document.querySelectorAll('.name') //选取所有class为name的DOM
________________________________________________
element.addEventListener(event, function, useCapture);
*useCapture* default is false, default in Bubbling phase
//Capturing phase – the event goes down to the element.
//Bubbling phase – the event bubbles up from the element.
regular expression
function activeBtn(btnId) {
var btns = document.getElementsByClassName('main-nav-btn');
// deactivate all navigation buttons
for (var i = 0; i < btns.length; i++) {
btns[i].className = btns[i].className.replace(/\bactive\b/, '')
/* "/ /"之间代表内容 \b代表词边界 */
}
// active the one that has id = btnId
var btn = $(btnId);
btn.className += ' active';
}
网友评论