原生js操作网页
emmm
添加网页元素
移除网页元素
代码
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>Title</title></head><style> div{ border: 1px solid black width: 100px height: 100px text-align: center }</style><body><div>div1</div><div>div2</div><script> var div = document.createElement("div") div.innerText = "这是使用js添加的元素" //添加一个div元素 document.body.appendChild(div) alert("3秒后移除div1") //移除html元素 setTimeout(function () { var divList = document.getElementsByTagName("div") divList[0].remove() },3000)</script></body>js输出html中表格的方法如下:
document.write("<table border=1 >")
for(i=1i<=ri++)
{
document.write("<tr>")
for(j=1j<=cj++)
document.write("<td>"+Math.pow(j,i)) //输出数组
document.write("</tr>")
}
document.write("</table>")
运行结果: