私はウェブサイトのユーザースクリプトに取り組んでいます。特定のデータ属性が見つかった場合、サイトのタイトルを変更することは可能ですか?
これは私が現在持っているものです:
if ($(document.attr('data-class="car"')) {
$("title").text('*Car found!*');
}
私はウェブサイトのユーザースクリプトに取り組んでいます。特定のデータ属性が見つかった場合、サイトのタイトルを変更することは可能ですか?
これは私が現在持っているものです:
if ($(document.attr('data-class="car"')) {
$("title").text('*Car found!*');
}
AJAXが関係していると思います。その場合、次を使用できます。
var titleCheckTimer = setInterval (checkAndChangeTitle, 333);
function checkAndChangeTitle () {
if ($('[data-class="car"]').length) {
document.title = "*Car found!*";
clearInterval (titleCheckTimer);
}
}
(これは静的ページでも機能します。)
あなたがすることができます:
if ($('[data-class="car"]').length > 0) {
$('title').text('Car found!');
}
if($(document).hasAttribute('data-class'))
$('title').text('Car found!');
また
var title = document.getElementsByTagName('title');
if (document.hasAttribute('data-class'))
title[0].innerHTML = 'Car found!';