本文介绍了在JavaScript中复制怎么办?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
<html>
<head>
</head>
<script type="text/javascript" language="javascript">
function f()
{
// how to copy text in div when Button Is clicked?!
}
</script>
<body>
<div style="width:200px;height:200px;background-color:gray;" id="div1">
abcdefgh
</div>
<input type="button" value="Copy" onclick="f();"/>
</body>
</html>
推荐答案
function CopyToClipboard()
{
CopiedTxt = document.selection.createRange();
CopiedTxt.execCommand("Copy");
}
希望这对您有帮助,
谢谢
-Amit Gajjar
Hope this helps you,
Thanks
-Amit Gajjar
这篇关于在JavaScript中复制怎么办?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!