如何<title>
使用jQuery制作动态更改标签?
示例:>
一一添加3个符号
> title
>> title
>>> title
如何<title>
使用jQuery制作动态更改标签?
示例:>
一一添加3个符号
> title
>> title
>>> title
Answers:
$(document).prop('title', 'test');
这只是一个JQuery包装器,用于:
document.title = 'test';
要定期添加>,您可以执行以下操作:
function changeTitle() {
var title = $(document).prop('title');
if (title.indexOf('>>>') == -1) {
setTimeout(changeTitle, 3000);
$(document).prop('title', '>'+title);
}
}
changeTitle();
无需使用jQuery来更改标题。尝试:
document.title = "blarg";
有关更多详细信息,请参见此问题。
要动态更改按钮,请单击:
$(selectorForMyButton).click(function(){
document.title = "blarg";
});
要动态更改循环,请尝试:
var counter = 0;
var titleTimerId = setInterval(function(){
document.title = document.title + '>';
counter++;
if(counter == 5){
clearInterval(titleTimerId);
}
}, 100);
要将两者串联在一起,以便在单击按钮时动态地改变它:
var counter = 0;
$(selectorForMyButton).click(function(){
titleTimerId = setInterval(function(){
document.title = document.title + '>';
counter++;
if(counter == 5){
clearInterval(titleTimerId);
}
}, 100);
});
var isOldTitle = true;
var oldTitle = document.title;
var newTitle = "New Title";
var interval = null;
function changeTitle() {
document.title = isOldTitle ? oldTitle : newTitle;
isOldTitle = !isOldTitle;
}
interval = setInterval(changeTitle, 700);
$(window).focus(function () {
clearInterval(interval);
$("title").text(oldTitle);
});
我使用(并推荐):
$(document).attr("title", "Another Title");
它也可以在IE中使用,这是
document.title = "Another Title";
有些人会争论wich更好,prop还是attr,并且因为prop调用DOM属性和attr调用HTML属性,所以我认为这实际上更好。
在DOM加载后使用它
$(function(){
$(document).attr("title", "Another Title");
});
希望这可以帮助。
一些代码来浏览标题列表(循环或一次性):
var titles = [
" title",
"> title",
">> title",
">>> title"
];
// option 1:
function titleAniCircular(i) {
// from first to last title and back again, forever
i = (!i) ? 0 : (i*1+1) % titles.length;
$('title').html(titles[i]);
setTimeout(titleAniCircular, 1000, [i]);
};
// option 2:
function titleAniSequence(i) {
// from first to last title and stop
i = (!i) ? 0 : (i*1+1);
$('title').html(titles[i]);
if (i<titles.length-1) setTimeout(titleAniSequence, 1000, [i]);
};
// then call them when you like.
// e.g. to call one on document load, uncomment one of the rows below:
//$(document).load( titleAniCircular() );
//$(document).load( titleAniSequence() );
HTML代码:
Change Title:
<input type="text" id="changeTitle" placeholder="Enter title tag">
<button id="changeTitle1">Click!</button>
jQuery代码:
$(document).ready(function(){
$("#changeTitle1").click(function() {
$(document).prop('title',$("#changeTitle").val());
});
});
用jquery更改页面标题的非常简单的方法。
<a href="#" id="changeTitle">Click!</a>
这里是Jquery方法:
$(document).ready(function(){
$("#changeTitle").click(function() {
$(document).prop('title','I am New One');
});
});