我创建了一个点击复制功能,以便用户可以点击一个按钮来复制另一个元素的文本内容。我已对此进行设置,以便用户可以复制其序列号(通过短代码动态生成 -
我有这个工作,目标容器(包含要复制的文本)是#copyTarget2
,触发按钮是#copyButton2
。然后我有了这个正在运行的Javascript:
<script>
document.getElementById("copyButton2").addEventListener("click", function() {
copyToClipboardMsg(document.getElementById("copyTarget2"), "msg");
});
document.getElementById("pasteTarget").addEventListener("mousedown", function() {
this.value = "";
});
function copyToClipboardMsg(elem, msgElem) {
var succeed = copyToClipboard(elem);
var msg;
if (!succeed) {
msg = "Copy not supported or blocked. Press Ctrl+c to copy."
} else {
msg = "Text copied to the clipboard."
}
if (typeof msgElem === "string") {
msgElem = document.getElementById(msgElem);
}
msgElem.innerHTML = msg;
setTimeout(function() {
msgElem.innerHTML = "";
}, 2000);
}
function copyToClipboard(elem) {
// create hidden text element, if it doesn't already exist
var targetId = "_hiddenCopyText_";
var isInput = elem.tagName === "INPUT" || elem.tagName === "TEXTAREA";
var origSelectionStart, origSelectionEnd;
if (isInput) {
// can just use the original source element for the selection and copy
target = elem;
origSelectionStart = elem.selectionStart;
origSelectionEnd = elem.selectionEnd;
} else {
// must use a temporary form element for the selection and copy
target = document.getElementById(targetId);
if (!target) {
var target = document.createElement("textarea");
target.style.position = "absolute";
target.style.left = "-9999px";
target.style.top = "0";
target.id = targetId;
document.body.appendChild(target);
}
target.textContent = elem.textContent;
}
// select the content
var currentFocus = document.activeElement;
target.focus();
target.setSelectionRange(0, target.value.length);
// copy the selection
var succeed;
try {
succeed = document.execCommand("copy");
} catch(e) {
succeed = false;
}
// restore original focus
if (currentFocus && typeof currentFocus.focus === "function") {
currentFocus.focus();
}
if (isInput) {
// restore prior selection
elem.setSelectionRange(origSelectionStart, origSelectionEnd);
} else {
// clear temporary content
target.textContent = "";
}
return succeed;
}
</script>
但是现在我必须调整html,这样我就可以动态显示“无效的序列号”&#39;没有活跃序列号的用户的消息。这意味着包含文本的元素不同,并且是#copyTarget2
的子元素。
我需要知道的是:
使用控制台中的以下屏幕截图,任何人都可以告诉我保留复制功能并在#copyTarget2
内选择输入容器的最佳方法吗?
我已经尝试#copyTarget2 input
,#copyTarget2.input
无济于事。
请记住,我的JS正在使用GetElementbyID(),因此只需将#copytarget2
替换为input[type="text"]
即可。
答案 0 :(得分:0)
将GetElementbyID
更改为querySelector
并尝试使用此选择器
querySelector('input[name="_AFXSERIAL"]')
答案 1 :(得分:0)
通过getElementsByTagName
document.getElementById('copyTarget2').getElementsByTagName('input')[0].value
或切换到querySelector
document.querySelector('#copyTarget2 input').value
答案 2 :(得分:0)
如果您想进行试验,可以尝试使用此Web API https://developer.mozilla.org/en-US/docs/Web/API/ClipboardEvent
这将帮助您删除您编写的整个脚本,并为您提供其他功能,如剪切和粘贴。
请检查兼容性图表。
另外,放置&#34;#copyTarget2&#34;输入也会起作用。
DOM会变成,
<span>
<strong>
<input id="copyTarget2" />
</strong>
</span>