下面是我尝试在 javascript 中使用 DOM 遍历的一些帧的代码片段。我可以document.getElementById('raiseConfirm').click()
在 FF 和 IE 中使用。它在野生动物园中不起作用。我尝试了许多不同的方法来尝试使用 ID raiseConfirm 找到锚点。在这种情况下,看起来好像document.getElementById()
在此框架中找不到任何元素。我试过window.document
, self.document
, contentWindow
, ,contentDocument
我试过这样window.frames['gvdd'].document
命名getElementById()
框架.undefined
null
谁能指出我正确的解决方案?
<form method="POST"
action="somescript.asp?CMD=POST&TODO=TRUE2"
id="FORMSV2DISPLAY"
name="FORMSV2DISPLAY">
<a id="raiseConfirm" href="#divConfirm" class="nyroModal">HERE IT IS</a>
<div id="divConfirm" style="display:none;">…</div>