需要准备的材料分别有:电脑、html编辑器、浏览器。
1、首先,打开html编辑器,新建html文件,例如:index.html,编写基础代码。
2、在index.html中的<script>标签,输入js代码:$('table tr').eq(1).remove()$('table tr').eq(1).remove()。
3、浏览器运行index.html页面,此时发现表格的最后2行都被js删除了。
建议你的id不要重复,要不会引起许多莫名其妙的问题,所以我你的id="t"改成class="t"<table border="1"><tr>
<td class="t">1</td>
<td>2</td>
</tr>
<tr>
<td class="t">3</td>
<td>4</td>
</tr>
</table>
<script type="text/javascript">
var td=document.getElementsByTagName("td")
for(var i=0i<td.lengthi++)
{
if(td[i].className=="t")
{
td[i].parentNode.removeChild(td[i])
}
}
</script>