我加载一个页面'A'并从该页面使用这样的表单操作,
<form method="post" enctype="multipart/form-data" action="/blah">
<input id="browse4File" type="file" name="thefile" style="important:relative; width: 300px; top:75px; left:20px; "><br/>
<input id="la" type="submit" name="SUBMIT" value="UPLOAD" style="position:relative; font-size:14px; left:300px; top:70px;"/>
</form>
<div id="RetMessage" style="position:relative; left:30px; top:70px; color:#a22; font-size:14px;">This is some comment that needs to disappear</div>
此表单调用另一个页面“B”,但它不会直接使用window.open
. 我认为它被称为 CGI 请求,而不是 AJAX 请求。JavaScript 中的“B”页面需要访问“A”页面的内容才能进行修改。我尝试了很多方法来访问它:
document.parent.getElementById('RetMessage').innerHTML
document.referrer...
document.opener...
window.parent...
我没有成功访问引用页面
家里有没有天才可以帮我解决这个问题。在我看来,引用页面没有在 DOM 中链接到被引用页面。有没有其他方法可以实现这一点
帮助!
丹尼斯