本文共 1724 字,大约阅读时间需要 5 分钟。
获取head的title
- $(document).ready(function(){
- alert($("title").html());
- $(document)[0].title='dd';
- });
- jQuery(function($) {
- setInterval(function(){
- $.get("Untitled-2.html", function(data){
- if(data == 1){
- var timerArr = $.blinkTitle.show();
- setInterval(function() {
- $.blinkTitle.clear(timerArr);
- }, 4000)
- }else{
- $.blinkTitle.clear(timerArr);
- }
- });
- },4000);
-
- });
送达方式发
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>新消息闪烁提示Demo</title>
- </head>
-
- <body>
- <p style="text-align:center;">请看网页标题处效果!
- <br/>隔10秒后提示消失
- </p>
- <script type="text/javascript" src="../js/jquery-1.4.2.min.js"></script>
- <script type="text/javascript">
- ;(function($) {
-
- $.extend({
-
-
-
-
- blinkTitle : {
- show : function() {
- 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];
- },
-
-
-
-
-
- clear : function(timerArr) {
- if(timerArr) {
- clearInterval(timerArr[0]);
- document.title = timerArr[1];
- };
- }
- }
- });
- })(jQuery);
-
- jQuery(function($) {
- var timerArr = $.blinkTitle.show();
-
- setTimeout(function() {
- $.blinkTitle.clear(timerArr);
- }, 10000);
-
-
- });
- </script>
- </body>
- </html>
转载地址:http://mxrlo.baihongyu.com/