Làm cách nào để tạo <title>
thẻ thay đổi động với jquery?
ví dụ: thêm lần lượt 3 >
ký hiệu
> title
>> title
>>> title
Làm cách nào để tạo <title>
thẻ thay đổi động với jquery?
ví dụ: thêm lần lượt 3 >
ký hiệu
> title
>> title
>>> title
Câu trả lời:
$(document).prop('title', 'test');
Đây chỉ đơn giản là một trình bao bọc JQuery cho:
document.title = 'test';
Để thêm> định kỳ, bạn có thể làm:
function changeTitle() {
var title = $(document).prop('title');
if (title.indexOf('>>>') == -1) {
setTimeout(changeTitle, 3000);
$(document).prop('title', '>'+title);
}
}
changeTitle();
Không cần sử dụng jQuery để thay đổi tiêu đề. Thử:
document.title = "blarg";
Xem câu hỏi này để biết thêm chi tiết.
Để thay đổi động khi nhấp vào nút:
$(selectorForMyButton).click(function(){
document.title = "blarg";
});
Để thay đổi động trong vòng lặp, hãy thử:
var counter = 0;
var titleTimerId = setInterval(function(){
document.title = document.title + '>';
counter++;
if(counter == 5){
clearInterval(titleTimerId);
}
}, 100);
Để xâu chuỗi cả hai lại với nhau để nó tự động thay đổi khi nhấp vào nút, trong một vòng lặp:
var counter = 0;
$(selectorForMyButton).click(function(){
titleTimerId = setInterval(function(){
document.title = document.title + '>';
counter++;
if(counter == 5){
clearInterval(titleTimerId);
}
}, 100);
});
sử dụng
$('title').html("new title");
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);
});
tôi sử dụng (và khuyến nghị):
$(document).attr("title", "Another Title");
và nó hoạt động trong IE cũng như đây là bí danh của
document.title = "Another Title";
Một số người sẽ tranh luận về cái nào tốt hơn, prop hay attr , và vì thuộc tính DOM call prop và thuộc tính attr Call HTML, tôi nghĩ điều này thực sự tốt hơn ...
sử dụng cái này sau khi tải DOM
$(function(){
$(document).attr("title", "Another Title");
});
hi vọng điêu nay co ich.
Một số mã để xem qua danh sách các tiêu đề (tuần hoàn hoặc một lần):
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() );
Mã HTML:
Change Title:
<input type="text" id="changeTitle" placeholder="Enter title tag">
<button id="changeTitle1">Click!</button>
Mã truy vấn:
$(document).ready(function(){
$("#changeTitle1").click(function() {
$(document).prop('title',$("#changeTitle").val());
});
});
Cách rất đơn giản để thay đổi tiêu đề trang bằng jquery ..
<a href="#" id="changeTitle">Click!</a>
Đây là phương thức Jquery:
$(document).ready(function(){
$("#changeTitle").click(function() {
$(document).prop('title','I am New One');
});
});