一、JS原生方法:get.ElementById();get.ElementsByTagName();alert();console.log();number();parseInt();parseFloat();isNaN(); 二、属性:innerHTML, value, type, href, src, alt, 自定义属性; 三、事件:鼠标事件、键盘事件、系统事件、表单事件、自定义事件......1、鼠标事件:onclick 鼠标点击onmouseover 鼠标移到某个东西onmouseout 鼠标移开onmousedown 鼠标按下onmouseup 鼠标抬起onmousemove 就像是鼠标抚摸一样的事件 2、系统事件有哪些:onload 加载完之后执行......window.onloadimg.onloadbody.onload...... 四、开关:(布尔值) true false 五、语句: if (条件判断语句)for(var i=0;i<length;i++){} (for循环)
时间: 2024-11-03 05:34:51