当前位置:网站首页>JS to determine whether the browser has opened the console

JS to determine whether the browser has opened the console

2022-06-23 00:44:00 Ziwei front end

(function () {
  var re = /x/;
  var i = 0;
  console.log(re);

  re.toString = function () {
    return ' The first  ' + (++i) + '  Open the console again ';
  };
})();

原网站

版权声明
本文为[Ziwei front end]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/173/202206222049583398.html