我在 iframe 中有一个文本区域。我想在 JavaScript 中选择带有 onclick 事件的 textarea 文本。
例子:
I have an iframe.
The inner content of the iframe is this:
<textarea id="textarea" disabled onclick="selectthis()">
"content of textarea"
</textarea>
我想选择文本以便用户可以复制它:
I put this at the head of my page:
function selectthis() {
document.getElementById('textarea').select();
}
但是当我点击 textarea 时,它没有被选中。