<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<input type="text" class="copyLink">
<button id="copyBtn">复制地址</button>
</body>
<script src="jquery.min.js"></script>
<script>
$(function(){
$("#copyBtn").click(function(){
$(".copyLink").select(); //-----复制内容对象----
tag = document.execCommand("Copy"); //------执行浏览器拷贝命令-----
if (tag) {
alert("复制成功");
} else {
alert("复制失败,建议您使用Ctrl+C或右键全选进行地址复制。");
}
})
});
</script>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
</head>
<body>
<input type="text" class="copyLink">
<button id="copyBtn">复制地址</button>
</body>
<script src="jquery.min.js"></script>
<script>
$(function(){
$("#copyBtn").click(function(){
$(".copyLink").select(); //-----复制内容对象----
tag = document.execCommand("Copy"); //------执行浏览器拷贝命令-----
if (tag) {
alert("复制成功");
} else {
alert("复制失败,建议您使用Ctrl+C或右键全选进行地址复制。");
}
})
});
</script>
</html>