<title>
jquery로 동적 변경 태그 를 만드는 방법은 무엇입니까?
예 : 3 개의 >
기호를 하나씩 추가
> title
>> title
>>> title
답변:
$(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);
});
사용
$('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);
});
나는 (그리고 추천한다) :
$(document).attr("title", "Another Title");
IE에서도 작동합니다.
document.title = "Another Title";
어떤 사람들은 어떤 것이 더 나은지, prop 또는 attr 에 대해 토론 할 것입니다. 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');
});
});