获得对象:
document.getElementById(id) //使用id获取对象,返回值为单个对象
document.getElementsByName(name) // 使用name获取对象,返回值为数组
document.getElementsByClassName(name) // 使用class获取对象,返回值为数组
document.getElementsByTagName(tagName) // 使用标签获取对象,返回值为数组
对象 . getAttribute("属性");得到对象的属性值
对象 . setAttribute("属性", "要改变的值") ; 改变对象的属性值
innerHTML//获取div中的值(没有values值得都由它获取)也可以通过它给div赋值;
document.createElement("img"); //增加元素
document.appendChild():末尾追加方式插入节点
document.insertBefore():在指定节点前插入新节点