web-dev-qa-db-ja.com

JavaScriptでタイトルを変更

Facebookのタイトルリンクのようなマウスオーバータイトルの変更として、Jqueryを使用してドキュメントの既存のタイトルを変更するにはどうすればよいですか。

19
ukung

JQueryは必要ありません。

document.title = 'My new title here';
31
Jordan

JavaScriptを使用。 jQueryはここでは役に立ちません:

document.title = 'New Title';

必要に応じて、jQueryマウスオーバーコールバック関数にそれを挿入できます。

10
Paulpro

私はこれらの他の答えを拡張します。このコードは完全にそれを行うべきです、セレクターのクラスと新しいタイトルテキストを必ず変更してください。

(function(){
    var oldtitle;
    jQuery('a.yourlink').hover(
        function () {
           oldtitle = document.title;
           document.title = 'Your New Title';
        },
        function () {
            document.title = oldtitle;
        }
    );
})();

ウィンドウのタイトルではなく、オブジェクトのテキストを変更するjsfiddleデモを次に示します。 http://jsfiddle.net/MpZGf/1/

6
Toby

試してください:

document.title = 'title';
3
The Mask