“User:Lihaohong/common.js”的版本间的差异

来自萌娘共享
跳转至: 导航搜索
(艹)
 
第4行: 第4行:
 
   if (closeButton.length == 0) {
 
   if (closeButton.length == 0) {
 
     const sto = setTimeout;
 
     const sto = setTimeout;
     sto(closeWindows, 100);
+
     sto(closeWindows, 20);
 
     return;
 
     return;
 
   }
 
   }

2023年1月10日 (二) 12:23的最新版本

// 自动关乞讨消息(雾
const closeWindows = function() {
  const closeButton = $('.fc-close');
  if (closeButton.length == 0) {
    const sto = setTimeout;
    sto(closeWindows, 20);
    return;
  }
  closeButton[0].click();
}
closeWindows();