javascript

今天公司进行了JS培训,PPT上有些觉得挺好的。摘下来,以学习。

节点间的关系
父节点(parentNode)
子节点(childNodes,firstChild,lastChild)
邻节点(previousSibling,nextSibling)

节点的创建与操作
 创建:createElement(),createTextNode()
 访问:getElementById(),getElementsByName()
               getElementsByTagName(),getAttribute()
 删除:removeChild(),removeAttribute()
 添加:appendChild(),insertBefore()
 替换:replaceChild()
 更改:setAttribute()


事件类型
鼠标事件(click,dbclick,mouseover,mouseout,mouseup,mousedown,mousemove)
键盘事件(keyup,keydown)
HTML事件(load,unload,resize,scroll,abort,error,select,change,submit,reset,focus,blur)

你可能感兴趣的:(JavaScript,html)