Wie mache ich den Text auf der Webseite standardmäßig ausgewählt? Die Art, die direkt per Rechtsklick kopiert werden kann.
Bitte fragen Sie den Meister um Rat. . . . . . . . . . .
试试看这个代码
<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即可