formDrawer
我在下面有我的表格
<table id="drawer-table">
<form action="" method="post" name="formDrawer">
<tr>
<td>New Drawer Name</td>
<td><input type="text" name="name" size="30" maxlength="20"/> </textarea>
</td>
</tr>
<tr>
<td>Prefix</td>
<td><input type="text" name="prefix" size="10" maxlength="6"/> </textarea>
</td>
</tr>
</form>
<tr>
<td colspan="2" align="center">
<form id="form1" name="form1" method="post" action="">
<label>
<input type="submit" name="drawerAdd" value="Save"/>
<input type="submit" name="pCancel" value="Cancel" />
</label>
</form>
</td>
</tr>
</table>
下面我添加了一个 PHP,它使用在我的表单中输入的数据创建表。在我的表格的最后一列中,我添加edit
了当我单击它时我想在表单中设置我的控件的值。我在下面有我的代码,但它不起作用。在我的a href
我添加了 javascript 但没有运气。
while($row = mysql_fetch_array($result, MYSQL_BOTH))
{
echo "<tr onMouseover=this.bgColor='#EEEEEE' onMouseout=this.bgColor='#FFFFFF'>";
echo "<td>" . $row['drawerName'] . "</td>";
echo "<td>" . $row['drawerPrefix'] . "</td>";
echo "<td class='add-edit'><button type='button' onclick='this.formDrawer.prefix.value = ".$row['drawerPrefix'].";'>Edit</button></td>";
echo "</tr>";
}