我正在尝试修改页面的HTML标记,以便使用JavaScript添加一些按钮。
下面你可以找到我试图修改的页面的“片段”(很长,我道歉,但我真的需要你得到页面的结构)。
我的JavaScript代码由浏览器扩展插入(我可以成功地将JavaScript添加到页面并使其运行),它应该做的唯一操作是将按钮添加到正确的位置。
HTML页面包含一个<FORM>
,其中包含一个表格
在一些行和单元格之后,有一个包含3个输入按钮的单元格:
<input type="submit" name="submit" value="Set Ships">
<input type="button" name="sel" value="Select all" onclick="alert('Not Allowed.');">
<input type="button" name="desel" value="Deselect all" onclick="alert('Not Alloowed.');">
我希望我的JavaScript代码在desel
按钮后面放置第四个按钮。
这是我用来添加按钮的代码:
function add() {
var element = document.createElement("input");
element.setAttribute("type", "button");
element.setAttribute("value", "invert");
element.setAttribute("name", "button3");
element.setAttribute("onclick", "foo()");
document.flotta.appendChild(element);
}
此代码显然将按钮直接放在文档的末尾,就在表单(名为flotta
)之后。
我意识到我无法使用函数getElementById
,因为按钮之前的<td>
标记没有关联id
。
因此我问是否有人可以指出我将解决方案添加到正确的位置。
<html>
<head>
<title>fee foo</title>
. . . head code
</head>
<body >
<div id="Layer" name="Layer" /*other attributes*/"></div>
<table /*table attributes*/>
. . . table content
</table>
<form id="flotta" name="flotta" method="post" action="home.php?sel=gestioneflotta">
<table /*table attributes*/>
<tbody>
<tr><td>
<table /* attributes*/>
<tbody><tr>
<td /* attributes*/></td>
<td /* attributes*/></td>
<td /* attributes*/></td>
</tr>
<tr>
<td /* attributes*/"> </td>
<td bgcolor="ffffff" background="bg/pergamena.jpg" align="center">
<input type="submit" name="submit" value="Set Ships">
<input type="button" name="sel" value="Select all" onclick="alert('Not Allowed.');">
<input type="button" name="desel" value="Deselect all" onclick="alert('Not Alloowed.');"> </td>
<td background="bg/menu_d.gif"> </td>
</tr>
<tr>
<td /* attributes*/" width="11" height="11"></td>
<td /* attributes*/></td>
<td /* attributes*/></td>
</tr>
</tbody>
</table>
</td></tr>
<tr>
. . . another row
</tr>
</tbody>
</table>
</form>
<table border="0" cellspacing="0" cellpadding="0" align=center width=510>
. . . another table
</table>
<script type="text/javascript">
some script
</script>
</body>
</html>
答案 0 :(得分:6)
以下代码应该获得td:
var td = document.getElementsByName('desel')[0].parentNode;
基本上,它获取名为'desel'的所有字段/按钮,并且假设只有一个,获取第一个元素的父元素(应该是包含按钮的td)。