我正在尝试在已经存在的按钮对象旁边添加一个新按钮对象,但它没有 ID,因此我无法简单地选择该对象。唯一具有 ID 的对象是 iframe。页面如下所示:
<iframe id="gsft_main" />
<html>
<head>...</head>
<body>
<table>
...
</table>
<table>
<table>
...
</table>
</table>
<button onclick="someCodeHere('')"> Submit </button>
<script>...</script>
<script>...</script>
<script>...</script>
<body>
</html>
</iframe>
我需要更改它,使其看起来像:
...
...
<button onclick="injectedCodeHere('')"> Do Something Else </button>
<button onclick="someCodeHere('')"> Submit </button>
...
...
谢谢