我为自己制作的基于Web的操作系统制作了一个基于Web的小型Web浏览器。我注意到在某些站点中,它们具有喜欢在新选项卡中打开的链接。有没有办法可以避免这种情况,而是可以在iframe中打开链接?

这是我为整个浏览器编写的代码,以防万一:

<html>
<head>

<link href="./browser.css" rel="stylesheet" type="text/css"/>
<script type="text/javascript"  src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script>
$(function() {
$("#load").click(function() {
var new_url = $("#url").val();

// Checks that the user typed "http://" or not
if(new_url.substr(0,7)!="http://")
new_url = "http://"+new_url;

$("#main_frame").attr("src", new_url);
});
});
</script>
</head>
<body>

<div id="help">
<form action="help.html"><input type="submit" value="Help"></form>
</div>

Address:
<div id="logo">
<img src="stallion.png">
</div>
<input type="text" style="width: 400px;" name="url" id="url">
<input type="button" value="Go" id="load">

<div>
<input type="image" src="back.png" height=25 width=25 onclick="back()">
<input type="image" src="forward.png" height=25 width=25 onclick="forward()">
<input type="image" src="refresh.png" height=26 width=26 onclick="refresh()">
</div>

<iframe frameborder=0 class="netframe" src="http://www.bing.com/" id="main_frame"></iframe>

</body>
<script>
function back()
{
window.history.back();
}
</script>

<script>
function forward()
{
window.history.forward();
}
</script>

<script>
function refresh()
{
var iframe = document.getElementById('main_frame');
iframe.src = iframe.src;
}
</script>

</html>

最佳答案

有两种选择

1:您可以在每次更改时检查iframe中的所有html,并查找"target=_blank",如果是,请替换为"target=_self"
2:我认为最好的方法是,当用户单击 anchor 标记时,检查 anchor 是否具有"target=_blank"属性,只需将其删除,然后单击链接即可。

我在下面提供了一个jsFiddle

https://jsfiddle.net/L5dhp80e/

Html

<a class="newTab" href="http://www.google.com" target="_blank">
    New Tab Google
</a>

<br />
<a class="removeBlank" href="http://www.google.com" target="_blank">
    Removed Target Blank Google
</a>

Java脚本
$(function () {
    $('a.removeBlank').on('click', function () {

        if ($(this).attr('target') == "_blank") {
            $(this).attr('target', '_self');
        }

        $(this).click();

        return false;
    })
});

但是,如果iframe内容是跨域的,那么我认为您根本无法编辑任何代码。

Get DOM content of cross-domain iframe

关于javascript - 如何防止iframe中的链接在新标签页中打开,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29188009/

10-15 23:35