• 博客园个人博客动态js个人更新记录


    博客园个人博客动态js个人更新记录

    提交模板

    -- 日期 修改人:修改js描述

    代码:

    示例:

    2022年5月18日 三号小玩家:博客园的点赞功能,去除掉页面点赞和点踩的点击事件

    <script >
    if(document.getElementsByClassName('diggit')[0]){
       document.getElementsByClassName('diggit')[0].style.display='none';
    document.getElementsByClassName('buryit')[0].style.display='none';
    var str=document.getElementById('digg_count').innerText;
     console.log(str);
     
      var ele3=document.createElement("div");
        ele3.innerHTML='<div style="position: fixed; bottom: 5px;  130px; height: 130px; right: 10px; border: 2px solid #6FA833; padding: 10px; background-color: #fff;">给我点赞333</div>';
    document.body.appendChild(ele3);
     } 
    </script>
    

    2022年5月19日 三号小玩家:博客园的点赞功能:防止右侧点赞框不显示,增加定时器

    <script > 
     setInterval(function(){
             if(document.getElementsByClassName('diggit')[0]){
       document.getElementsByClassName('diggit')[0].style.display='none';
    document.getElementsByClassName('buryit')[0].style.display='none';
    var str=document.getElementById('digg_count').innerText;
     console.log(str);
     
      var ele3=document.createElement("div");
        ele3.innerHTML='<div style="position: fixed; bottom: 5px;  130px; height: 130px; right: 10px; border: 2px solid #6FA833; padding: 10px; background-color: #fff;">支持一下!</div>';
    document.body.appendChild(ele3);
     } 
            },1000)
    </script> 
    

    目前出现得问题,待修复,定时任务在页面停留超过1000+次,会出现页面变白得情况。[Violation] 'setInterval' handler took xxms

  • 相关阅读:
    HTML标签和属性三
    HTML标签和属性二
    HTML标签和属性一
    小程序相关面试题
    Vue路由的hash模式与history模式的区别?
    android中VideoView播放sd卡上面的视频
    Android中app开机自启动的开发
    java中byte,byte[]和int之间的转换
    Android多activity启动两种方式浅谈
    Android开发用到的几种常用设计模式浅谈(一):组合模式
  • 原文地址:https://www.cnblogs.com/q1359720840/p/16283650.html
Copyright © 2020-2023  润新知