84669 人学习
152542 人学习
20005 人学习
5487 人学习
7821 人学习
359900 人学习
3350 人学习
180660 人学习
48569 人学习
18603 人学习
40936 人学习
1549 人学习
1183 人学习
32909 人学习
如何实现让网页中的文本默认是选中的状态?右键就直接能复制的那种。
请教一下大神。。。。。。。。。。。
试试看这个代码
<div class="nhtMsgText">
<input type="text" value="MSC10" readonly class="msg_cord">
<input type="button" value="复制">
</div>
$(".nhtMsgText input[type='button']").click(
function () {
$('input.msg_cord').focus(); //选择对象
$('input.msg_cord').select(); //选择对象
document.execCommand("Copy"); //执行浏览器复制命令
})
你是要在自己网站上实现这个功能?直接添加一个按钮 点击事件,利用document.execCommand即可
试试看这个代码
<div class="nhtMsgText">
<input type="text" value="MSC10" readonly class="msg_cord">
<input type="button" value="复制">
</div>
$(".nhtMsgText input[type='button']").click(
function () {
$('input.msg_cord').focus(); //选择对象
$('input.msg_cord').select(); //选择对象
document.execCommand("Copy"); //执行浏览器复制命令
})
你是要在自己网站上实现这个功能?直接添加一个按钮 点击事件,利用document.execCommand即可