我试图使用Jquery访问iframe内的表,但我不能。我需要表中的(tr)的id值,但这是在iframe上并且不起作用。 我需要在tr上方单击并获取id的值。
内部iframe:
<table id="table_3">
<tr id="value_1">
<td>ABC</td><td>ACB</td>
</tr>
<tr id="value_2">
<td>FGH</td><td>DFG</td>
</tr>
</table>
我正在使用它来访问:
<script>
$(document).on('click', "#table_3 tr", function () {
alert($(this).attr('id'));
});
</script>
如果我在主页面中有代码但使用iframe不起作用,则此方法有效。