//1.插入document.write('hello world');document.write(' ');document.write(' ');//高级 另一种插入控件var btn = document.createElement('button');btn.innerHTML = '百度一下';btn.style.width = '100';btn.style.height = '50';btn.style.color = 'red';document.body.appendChild(btn) //添加控件console.log(btn)//2.删除var img = document.getElementsByClassName('icon')[0];//document.body.removeChild(img);//img.parentNode.removeChild(img); //推荐做法img.remove();//3.修改var a = document.getElementsByClassName('xmg')[0];a.href = 'http://www.4399.com';a.target = '_blank';//4.查询function find(o){ for (var i = 0;i < o.length;i++){ console.log(o[i]); }}//find(document.body.children)var dives = document.getElementsByClassName('xmg')[0];console.log(dives);