在<td ><form target="ip" id="form28" name="form4" method="post" action="/cgi-bin/vgaic.cgi"> <input type="text" name="ip" id="ip" size="16" /> <label for="name1_submit"></label> <input type="submit" name="name1_submit" id="name1_submit" onclick="if(confirm('需重启才能生效,是否立即重启?点确定立即重启')) {document.getElementById('form29').submit();} else{return false;}" value="设置" /> <label for="label50"></label> <input type="reset" name="name_abord16" id="label50" value="清除" /> </form></td>的onclick弹窗中增加一个已有的确定重启的按钮<td ><form target="sys" id="form20" method="post" action="/cgi-bin/reboot"> <input type="submit" name="reboot" id="reboot" value="重启" /> </form></td>
时间: 2023-07-03 15:16:50 浏览: 97
你想要在一个表格中的一个按钮的onclick弹窗中增加一个已有的确定重启的按钮,可以在原来的onclick函数中加入一个新的按钮并在点击这个新按钮时提交一个新的表单。具体来说,可以将原来的onclick函数改为:
```
onclick="if(confirm('需重启才能生效,是否立即重启?点确定立即重启')) {
document.getElementById('form29').submit();
} else {return false;}"
```
然后在弹窗中加入一个新的按钮:
```
<input type="button" value="确定重启" onclick="document.getElementById('form20').submit();" />
```
这个新按钮的onclick函数会提交一个id为form20的表单,这个表单会触发重启操作。最后,需要将这个新按钮添加到原来的表格中,即在<td>节点中加入:
```
<td>
<form target="ip" id="form29" name="form4" method="post" action="/cgi-bin/vgaic.cgi">
<input type="text" name="ip" id="ip" size="16" />
<label for="name1_submit"></label>
<input type="submit" name="name1_submit" id="name1_submit" onclick="if(confirm('需重启才能生效,是否立即重启?点确定立即重启')) {
document.getElementById('form29').submit();
} else {return false;}" value="设置" />
<input type="button" value="确定重启" onclick="document.getElementById('form20').submit();" />
<label for="label50"></label>
<input type="reset" name="name_abord16" id="label50" value="清除" />
</form>
</td>
```
阅读全文