如何实现让网页中的文本默认是选中的状态?右键就直接能复制的那种。
请教一下大神。。。。。。。。。。。
大瓶可乐@php.cn2022-06-30 01:36:59
试试看这个代码
<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"); //执行浏览器复制命令
})