快速实现兼容的js复制方式。有点非正规,通过非正规的排版实现。

<div style="height:1px; width:1px; overflow:hidden; position:absolute;left:-2px;">
<input type="text" id="copybox" value="" />
</div>

js:

$("#copybox").val("要复制的内容");
var str = $("#copybox");
str.select();
document.execCommand("Copy");
上一篇:CDN的简单理解


下一篇:Spring+SpringMVC+MyBatis+easyUI整合基础篇(一)项目简介