gpt4 book ai didi

javascript - 隐藏的 TextArea 复制到剪贴板

转载 作者:可可西里 更新时间:2023-11-01 09:01:42 28 4
gpt4 key购买 nike

我正在尝试设置一个包含按钮列表的页面,按列排列(签名、返回、查询等)。目前,文本内置于文本区域功能中,请参阅:

<td>
<b>PartSelect</b>
<br />
<textarea id="copyTarget"
cols="25"
rows="3">Customer Service&#10;www.partselect.com&#10;888-895-1535
</textarea>
<br />
<button id="copyButton">Copy</button>
</td>

一旦我弄清楚了这部分代码,我将从 MySQL 数据库中提取 textarea 值,但我可以做到这一点。现在,我正在尝试使用 style:hidden; ,它确实隐藏了文本区域,但失去了复制功能。 Javascript函数代码如下:

document.getElementById("copyButton").addEventListener("click", function() {
copyToClipboardMsg(document.getElementById("copyTarget"), "msg");
});

正如我所说,这在字段可见时有效,但在我隐藏文本区域时停止工作。有解决办法吗?

供引用,如果需要,MySQL中的表使用以下信息:

数据库和表名是templates,列是id category shortname longname 文本

最佳答案

试试这个:

$(document).ready(function(){

$msg = "";

$("#copyButton").on("click",function(){

$msg = $("#copyTarget").text();
$("#copyTarget").text("");
$(this).prop({disabled:true});
$("#pasteButton").removeAttr("disabled");

})

$("#pasteButton").on("click",function(){

$("#pasteTxt").val($msg);
$(this).prop({disabled:true});
$("#copyButton").removeAttr("disabled");
$msg = "";

})

})

最终代码:

<html>
<title>This is test</title>
<head>
</head>
<body>
<td>
<b>PartSelect</b><br />
<textarea id="copyTarget" cols="25" rows="3">Customer Service&#10;www.partselect.com&#10;888-895-1535</textarea>

<br />

<button id="copyButton">Copy</button>
<button id="pasteButton" disabled>Paste</button>
<br><br>
<input type="text" id="pasteTxt" size="50">
</td>

<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script>
$(document).ready(function(){

$msg = "";

$("#copyButton").on("click",function(){

$msg = $("#copyTarget").text();
$("#copyTarget").text("");
$(this).prop({disabled:true});
$("#pasteButton").removeAttr("disabled");

})

$("#pasteButton").on("click",function(){

$("#pasteTxt").val($msg);
$(this).prop({disabled:true});
$("#copyButton").removeAttr("disabled");
$msg = "";

})

})
</script>
</body>
</html>

关于javascript - 隐藏的 TextArea 复制到剪贴板,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39307366/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com