이 기사의 예에서는 jQuery가 새 메시지에 대한 깜박이는 제목 프롬프트를 구현하는 방법을 설명합니다. 참고할 수 있도록 모든 사람과 공유하세요. 세부 내용은 다음과 같습니다.
이 코드는 제목 표시줄에 프롬프트 정보를 표시할 수 있습니다.
1. jQuery 플러그인 스타일 코드
;(function($) { $.extend({ /** * 调用方法: var timerArr = $.blinkTitle.show(); * $.blinkTitle.clear(timerArr); */ blinkTitle : { show : function() { //有新消息时在title处闪烁提示 var step=0, _title = document.title; var timer = setInterval(function() { step++; if (step==3) {step=1}; if (step==1) {document.title='【 】'+_title}; if (step==2) {document.title='【新消息】'+_title}; }, 500); return [timer, _title]; }, /** * @param timerArr[0], timer标记 * @param timerArr[1], 初始的title文本内容 */ clear : function(timerArr) { //去除闪烁提示,恢复初始title文本 if(timerArr) { clearInterval(timerArr[0]); document.title = timerArr[1]; }; } } }); })(jQuery);
2. 호출 방법은 다음과 같습니다.
jQuery(function($) { var timerArr = $.blinkTitle.show(); setTimeout(function() {//此处是过一定时间后自动消失 $.blinkTitle.clear(timerArr); }, 10000); //若人为操作消失,只需如此调用:$.blinkTitle.clear(timerArr); });
전체 예제 코드를 보려면 여기를 클릭하세요이 사이트에서 다운로드하세요.
이 기사가 모든 사람의 jQuery 프로그래밍에 도움이 되기를 바랍니다.