웹페이지의 텍스트가 기본적으로 선택되도록 하려면 어떻게 해야 하나요? 마우스 우클릭으로 직접 복사할 수 있는 종류입니다.
마스터에게 조언을 구하세요. . . . . . . . . . .
大瓶可乐@php.cn2022-06-30 01:36:59
이 코드를 사용해 보세요
<div class="nhtMsgText">
<input type="text" value="MSC10" readonly class="msg_cord"> " value="Copy">
</div>
$(".nhtMsgText input[type='button']").click(
function () {
$('input . msg_cord').focus(); //객체 선택
$('input.msg_cord').select(); //객체 선택
document.execCommand("Copy") //브라우저 복사 명령 실행
})
autoload2022-06-29 09:26:55
귀하의 웹사이트에 이 기능을 구현하고 싶으신가요? 버튼 클릭 이벤트를 직접 추가하고 document.execCommand
를 사용하세요.