我需要在屏幕上实现Copy to ClipBoard功能
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script>
$(document).on("click", "#inputbtn", function () {
var text = $("#comment").val();
});
</script>
</head>
<body>
Enter Comment: <input type="text" id="comment"><br> </br>
<input type="button" id = "inputbtn" value="Copy It ClipBoard">
</body>
</html>
不知道如何继续这个
我看过这个链接
http://www.htmlgoodies.com/beyond/javascript/article.php/3458851
在Chrome中无法使用
这是否可以在不使用任何插件的情况下完成
提前致谢。