バックグラウンド
最新のブラウザーは従来のステータス バーを廃止し、代わりにウィンドウの下部に小さなツールチップを描画して、ホバー/フォーカス時にリンク ターゲットを表示します。
この (私の場合は望ましくない) 動作の例を次のスクリーンショットに示します。
質問
- これらのツールチップを無効にするポータブルな方法はありますか?
- 特定の状況でこれを行うことの明らかな欠点を見逃していますか?
- 私の試み(以下を参照)はこれを達成するための合理的な方法ですか?
推論
私はイントラネット Web アプリケーションに取り組んでおり、いくつかのアプリケーション固有のアクションに対してこの動作を無効にしたいと考えています。率直に言っhttps://server/#
て、アプリケーションがその場所に独自のステータス バーを描画する場合があるため、どこでも目障りで目障りなためです。
私の試み
私は本業の Web 開発者ではないので、この分野の知識はまだかなり限られています。
とにかく、これが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
、すべての「外部」リンクを新しいタブ/ウィンドウで開き、カスタム プロトコルの処理を中断しないようにします。