From aa43ddbe12f5a0c7ac32b82578800982a82407ef Mon Sep 17 00:00:00 2001 From: landmadename <865870740@qq.com> Date: Sun, 13 Sep 2020 20:52:06 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=A0=E5=85=A5=E4=B8=80=E9=94=AE=E6=8B=96?= =?UTF-8?q?=E6=8B=BD=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.html | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/index.html b/index.html index 5016baa..eadfe4f 100644 --- a/index.html +++ b/index.html @@ -6,7 +6,7 @@ Wsine - 觅密 - +
@@ -63,6 +63,19 @@ } } } + function drop(e){ + var data = e.dataTransfer.getData("text"); + document.getElementById("key").value = data; + document.getElementById("btn_gencode").click(); + setTimeout( + document.getElementById("btn_copy").click(), + 300 + ) + } + function allowDrop(e) + { + e.preventDefault(); + }