如何实现让网页中的文本默认是选中的状态?右键就直接能复制的那种。

浏览:36日期:2024-01-07

问题描述

如何实现让网页中的文本默认是选中的状态?右键就直接能复制的那种。

请教一下大神。。。。。。。。。。。

问题解答

回答1:

试试看这个代码

<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"); //执行浏览器复制命令

})

回答2:

你是要在自己网站上实现这个功能?直接添加一个按钮 点击事件,利用document.execCommand即可

相关文章: