我知道如何逃避iframe。我有一个链接:
<a id="aaa" href="http://localhost/projectManagement/users" target="_parent" >Sign up</a>
问题是我想在点击按钮而不是链接时转义iframe。
我知道如何通过单击按钮执行JavaScript,所以我一直在使用javascriopt执行该链接
我尝试过的事情:
html :(它在iframe中)
<button onClick="tempEvent();" style="width: 500px; height: 50px; margin-top: -15px; font-size: 20px;">
<b>
click me
</b>
</button>
<div style="height: 15px;">
</div>
<a id="aaa" href="http://localhost/projectManagement/users" target="_parent" >Sign up</a>
的JavaScript
<script>
function tempEvent()
{
clickLink(document.getElementById('aaa')); // this technique does not work on firefox!
fireEvent(document.getElementById("aaa"),'click'); // this technique does not work in firefox eather.
document.getElementById("aaa").onclick();
}
function clickLink(link) {
if (document.createEvent) {
var event = document.createEvent("MouseEvents");
event.initMouseEvent("click", true, true, window,
0, 0, 0, 0, 0,
false, false, false, false,
0, null);
link.dispatchEvent(event);
}
else if (link.fireEvent) {
link.fireEvent("onclick");
}
}
function fireEvent(obj,evt){
var fireOnThis = obj;
if( document.createEvent ) {
var evObj = document.createEvent('MouseEvents');
evObj.initEvent( evt, true, false );
fireOnThis.dispatchEvent(evObj);
} else if( document.createEventObject ) {
fireOnThis.fireEvent('on'+evt);
}
}
</script>
我知道我可以用链接替换按钮,但我只是不明白为什么我无法实现这一点!
即使我将链接放在按钮内部也不起作用!
答案 0 :(得分:7)
父级中的Javascript:
function redirectMe(url) {
window.location = url;
}
子级iframe中的Javascript :
function tempEvent() {
parent.redirectMe('http://localhost/projectManagement/users');
}
您可以一起绕过<a>
所有内容,并且实际上并不需要整个clickLink / fireEvent。如果您确实需要激活链接上的点击事件,请查看jQuery及其click()
功能。
答案 1 :(得分:3)
<input type="button" onclick="try { window.parent.location.href = "http://example.com"; } catch(e) { }" />
或者,如果您不知道网址,或者只是将网址存储在元素上:
<input type="button" href="http://example.com" onclick="try { window.parent.location.href = this.href; } catch(e) { }" />
请记住,onclick事件并不总是需要引用一个函数。它能够直接从处理程序运行JavaScript代码,但大多数人更喜欢函数。
注意:我添加了try { } catch(e) { }
语句,因为可能存在跨域问题,尝试操作父窗口会导致错误抛出。