背景
现代浏览器废除经典的状态栏,并在显示的链接目标上悬停/焦点窗户的底部,而不是画一个小提示。
的这个(不希望的,在我的情况)行为的一个例子在下面的截图中示出:
问题
- 是否有禁用这些提示可移植的方式?
- 我失去了任何明显的缺点在我的特定情况下这样做呢?
- 是我尝试(见下文),完成这一个合理的方式?
推理
我的工作Intranet上的Web应用程序,并想因为坦率地说,禁用此行为对于某些应用程序的具体行动, https://server/#
到处看起来像一个眼睛酸痛,是因为碍眼在某些情况下,我的应用程序绘制其在该位置自己的状态栏。
我尝试
我不是一个网页开发者通过贸易,所以我的知识仍然是相当在这一领域的限制。
总之,这里是我的jQuery的尝试:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Target Tooltip Test</title>
<style>
a, span.a {
color: #F00;
cursor: pointer;
text-decoration: none;
}
a:hover, span.a:hover {
color: #00F;
}
a:focus, span.a:focus {
color: #00F;
outline: 1px dotted;
}
</style>
<script src="http://code.jquery.com/jquery-1.7.2.min.js"></script>
<script>
$(document).ready(function() {
patch();
});
function patch() {
$('a').each(function() {
var $this = $(this).prop('tabindex', 0);
if($this.prop('href').indexOf('#') == -1 || $this.prop('rel').toLowerCase() == 'external') {
return;
}
var $span = $('<span class="a" tabindex="0"></span>');
$span.prop('data-href', $this.prop('href'));
$span.text($this.text());
$this.replaceWith($span);
});
$('a[rel="external"]').click(function() {
window.open($(this).prop('data-href'));
return false;
});
$('span.a').click(function() {
location.href = $(this).prop('data-href');
}).keypress(function(event) {
if(event.keyCode == 13) {
location.href = $(event.target).prop('data-href');
}
}).focus(function() {
window.status = ''; // IE9 fix.
});
}
</script>
</head>
<body>
<ol>
<li><a href="http://google.com" rel="external">External Link</a></li>
<li><a href="#foo">Action Foo</a></li>
<li><a href="#bar">Action Bar</a></li>
<li><a href="#baz">Action Baz</a></li>
<li><a href="mailto:support@example.org">Email Support</a></li>
</ol>
</body>
</html>
patch()
替换包含所有链接#
(即,在我的情况下应用程序特定的动作)与span
元素,使所有的“外部”链接在新标签/窗口打开似乎并没有打破自定义协议处理。