クリップボードへのコピー


このチュートリアルでは、クリップボードのjQueryの例にコピーする方法を説明します.テキストの値を1つのフィールドを別のフィールドにコピーする必要があります.現在のアドレスやパーマネントアドレスなどを入力します.入力やtextareaまたはdivで動作している場合、jQueryやJavaScriptを使用してユーザーのクリップボードに入力またはdivのすべての内容をコピーするために「クリップボードにコピー」のようなボタンを作成する必要があります.
そこで、ここでJQueryを使ってクリップボードにコピーするコードをいくつか紹介します.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Copy to clipboard using jquery example - techsolutionstuff.cpm</title>
<script src="https://code.jquery.com/jquery-3.5.1.js"></script>
<script>
    $(document).ready(function(){
        $("button").click(function(){
            alert("Success");
            $("textarea").select();
            document.execCommand('copy');
        });

    });
</script>
</head>
<body>
  <h3>Copy To Clipboard JQuery Example - techsolutionstuff.com</h3>
    <textarea id="comment" rows="5" cols="62"></textarea>
    <p><button type="button">Copy To Clipboard</button></p>
    <p><strong>Note:</strong> Type something in the textarea and click the button to see the output.</p>
</body>
</html> 

Read More : How To Check Array Is Empty Or Null In Javascript


次のように出力します.

閉じるこの動画はお気に入りから削除されています
  • Read Also : How To Generate QRcode In Laravel
  • Read Also : How To Add Toastr Notification In Laravel
  • Read Also : Laravel 8 Google Recaptcha Example