Web ページ内のテキストをデフォルトで選択するにはどうすればよいですか?右クリックで直接コピーできるタイプ。
マスターにアドバイスを求めてください。 。 。 。 。 。 。 。 。 。 。
このコードを試してください
<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
を使用します。