<b>eval:</b>
eval(字符串);
跟字符串打交道
把字符串里面的代码,转换成js能理解的程序
尽量少用 ,功能太强了。防止eval注入:
eval json 出问题:报错了
解决:eval('('+strJson+')');
<b>判断一个数是不是一个整数 ?</b>
num == parseInt(num)
<b>真与假</b>
真:非0数字、非空字符串 、true、非空对象
假:0、空字符串(”)、false、空对象(null)、undefined、NaN
<b>获取非行间样式(获取计算后的样式、生效的样式):</b>
style: 玩的是行间样式
getComputedStyle(物体,false).样式
兼容:Chrome、FF、IE9+ 高级浏览器
eg: getComputedStyle(oDiv,false).width
物体.currentStyle.样式
兼容:IE系
eg: oDiv.currentStyle.width
兼容版:
if (oDiv.currentStyle) {
// IE
alert(oDiv.currentStyle.width);
} else {
// Chrome FF
alert(getComputedStyle(oDiv,false).width);
}
<b>随机数</b>
Math.random();
封装一个n-m 之间随机整数的函数
function rnd(n, m) {
return parseInt(Math.random()*(m-n)+n);
}
<b>函数:</b>
函数的定义
function 函数名(a,b) {
// code
a,b
return 值;
}
函数的调用
函数名(12,5);
需要有返回值:
return 返回值
返回值到底给谁 ?
谁调用就返回给谁
到底能返回些什么 ?
只要你愿意,什么都可以返回
返回值的用处:
封装函数 :就是把代码包裹起来
eg:封装一个获取n-m之间的随机整数的函数
<b>return 的特性:</b>
a). return 后面的代码不执行
b). 没有写return,默认返回undefined
c). 写return了,但是没有给值,也是返回undefined
<b>undefined出现的情况:</b>
a). 函数没有写、或者写return;,都返回undefined
b). 定义了一个变量,但是没有赋值
c). 访问一个不存在的属性
<b>随机双色球的原理。</b>
a). 6个数红球
b). 1-33之间的整数
c). 不能重复
怎么往数组里面塞东西:
arr.push(东西); -> 追加
往页面写东西:
document.write(东西);
去重:
怎么在数组里面找东西 ?