Advertisement
Guest User

Untitled

a guest
Jul 10th, 2021
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. window.setInterval(function() {
  2.     $.getJSON("/news/newscount?newsid=" + newsid, function(n) {
  3.         if (n.count > 0) {
  4.             var t = document.querySelector("link[rel*='icon']") || document.createElement("link");
  5.             t.type = "image/x-icon";
  6.             t.rel = "icon";
  7.             t.href = "//img.ithome.com/img/favicon_news_yellow.ico";
  8.             t.mce_href = "//img.ithome.com/img/favicon_news_yellow.ico";
  9.             document.getElementsByTagName("head")[0].appendChild(t);
  10.             t = document.querySelector("link[rel*='shortcut icon']") || document.createElement("link");
  11.             t.type = "image/x-icon";
  12.             t.rel = "shortcut icon";
  13.             t.href = "//img.ithome.com/img/favicon_news_yellow.ico";
  14.             document.getElementsByTagName("head")[0].appendChild(t);
  15.             $("#nmsg").text("有 " + n.count + " 篇文章更新,点击查看");
  16.             $(".pmsg").show()
  17.         }
  18.     })
  19. }, 3e5);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement