我为我制作的基于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>
答案 0 :(得分:0)
我在网上找到了这个答案:
window.open = function (url, name, features, replace) {
document.getElementById('#iframe').src = url;
}
或使用jQuery:
window.open = function (url, name, features, replace) {
$('#iframe').attr('src', url);
}
我还没有测试过,但我希望它有效。
答案 1 :(得分:0)
有两种选择
1:您可以在每次更改时检查iframe中的所有html,然后查找"target=_blank"
,如果是,则替换为"target=_self"
2:我认为更好的方法是,当用户点击锚标记检查以查看锚是否具有属性"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>
的Javascript
$(function () {
$('a.removeBlank').on('click', function () {
if ($(this).attr('target') == "_blank") {
$(this).attr('target', '_self');
}
$(this).click();
return false;
})
});
但是,如果iframe内容是跨域的,我认为您根本不能编辑任何代码。
答案 2 :(得分:0)
添加target="_self"
<iframe src="http://google.com" target="_self"></iframe>
目标属性是:
_self =在单击的框架中打开链接文档(这是默认设置)
_blank =在新窗口或标签页中打开链接的文档
_parent =打开父框架中的链接文档
_top =在窗口的正文中打开链接文档
framename =在命名框架中打开链接文档
来自:
的信息