diff --git a/source/js/july.js b/source/js/july.js new file mode 100644 index 0000000..ee3d120 --- /dev/null +++ b/source/js/july.js @@ -0,0 +1,6 @@ +function showImg(){ + document.getElementById("wxImg").style.display='block'; +} +function hideImg(){ + document.getElementById("wxImg").style.display='none'; +} \ No newline at end of file diff --git a/source/js/kico.js b/source/js/kico.js index e346e0d..544e7f7 100644 --- a/source/js/kico.js +++ b/source/js/kico.js @@ -9,7 +9,6 @@ 本代码为奇趣保罗原创,并遵守 MIT 开源协议。欢迎访问我的博客:https://paugram.com ---- */ - Array.prototype.remove = function (value) { var index = this.indexOf(value); if(index > -1) this.splice(index, 1);