首页 > 代码库 > javascript知识点小节

javascript知识点小节

1.类型转换:parseInt\parseFloat\Number\==

2.本地对象的方法:

String:concat\split\substring\substr\match\replace

Number:toFixed

Array:concat\join\slice\splice

RegExp:exec\test

3.DOM操作:

getElementById\getElementsByName

createElement

appendChild\removeChild\replaceChild\insertBefore

4.事件:

attachEvent\addEventListener

事件捕获事件冒泡

5.宿主对象:

window.location.href

6.内置对象:

Global和Math

7.函数:函数表达式\作用域链\闭包

8.面向对象:原型\对象冒充\this

9.AJAX:XMLHttpRequset\跨域

暂时想到这些了,写出来像目录一样,算是过了一遍吧

javascript知识点小节