From 31bf78f0f06456e943870fcc82b54bf5b993355a Mon Sep 17 00:00:00 2001 From: augushong Date: Mon, 5 Jul 2021 13:49:32 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E5=88=97=E8=A1=A8=E6=98=BE?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- view/index/index/index.html | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/view/index/index/index.html b/view/index/index/index.html index 9028b2c..cc9b612 100644 --- a/view/index/index/index.html +++ b/view/index/index/index.html @@ -317,13 +317,12 @@ $('.show-files').click(function () { var files = $(this).siblings('.files'); - if (files.is(':visible')) { files.hide() - $(this).text('隐藏') + $(this).text('显示') } else { files.show() - $(this).text('显示') + $(this).text('隐藏') } })