如何做出使html文本框中的内容复制的按钮
如何使html文本框中的内容复制,按一个叫“复制”的按钮,复制文字到剪切板我的源代码:<html><head><title>bird</title></head><bod...
如何使html文本框中的内容复制,按一个叫“复制”的按钮,复制文字到剪切板 我的源代码:<html><head><title>bird</title></head>
<body>
<textarea readonly rows="31" cols="80">A bird is in the tree.</textarea>
</body>
</html> 展开
<body>
<textarea readonly rows="31" cols="80">A bird is in the tree.</textarea>
</body>
</html> 展开
1个回答
展开全部
<html><head><title>bird</title>
<script type="text/javascript">
function copytoclip(obj)
{
var objtest=obj.innerText;
window.clipboardData.setData('text', objtest);
alert("复制成功");
}
</script>
</head>
<body>
<textarea id="tt" readonly rows="31" cols="80"
onclick="copytoclip(tt)">A bird is in the tree.</textarea>
</body>
</html>
<script type="text/javascript">
function copytoclip(obj)
{
var objtest=obj.innerText;
window.clipboardData.setData('text', objtest);
alert("复制成功");
}
</script>
</head>
<body>
<textarea id="tt" readonly rows="31" cols="80"
onclick="copytoclip(tt)">A bird is in the tree.</textarea>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询