Djangoのテンプレートファイルに下記のような、入力フォームの情報をクリップボードにコピーするJavaScriptを記載しています。
html
1{% extends 'base.html' %} 2{% load static %} 3{% block title %}title{% endblock %} 4 5{% block active_inquiry %}active{% endblock %} 6 7{% block contents %} 8<div class="container"> 9 <div class="row"> 10 <div class="my-div-style"> 11 <form method="post"> 12 {% csrf_token %} 13 14 {{ form.non_field_errors }} 15 16 {% for field in form %} 17 <div class="form-group row"> 18 <label for="{{ field.id_for_label }}" class="col-sm-4 col-form-label"> 19 <strong>{{ field.label_tag }}</strong> 20 </label> 21 <div class="col-sm-8"> 22 {{ field }} 23 {{ field.help_text }} 24 {{ field.errors }} 25 </div> 26 </div> 27 {% endfor %} 28 29 <div class="offset-sm-4 col-sm-64"> 30 <button class="btn btn-primary" type="submit" name="generate">result</button> 31 </div> 32 33 <br> 34 35 <div class="offset-sm-4 col-sm-8"> 36 <output id="result" type="text" class="form-control" style="width:500px" aria-label="result">{{ result }}</output> 37 <input id="dummyResult" type="hidden"> 38 </div> 39 40 41 <div class="offset-sm-4 col-sm-64"> 42 <button onclick="copyToClipboard()" class="btn btn-primary" type="button">copy</button> 43 </div> 44 45 <script> 46 function copyToClipboard() { 47 var copyTarget; 48 var copyText = document.getElementById("result").value; 49 document.getElementById("dummyResult").value = "test"; 50 51 copyTarget = document.getElementById("dummyResult"); 52 copyTarget.select(); 53 document.execCommand("Copy"); 54 alert("Copied the text: " + copyTarget.value); 55 } 56 </script> 57 </form> 58 </div> 59 </div> 60</div> 61 62{% endblock %}
上記をテンプレートをWebサーバでオープンし、クリップボードへのコピーを実施したところ、alert()にコピーしたテキストは表示されるものの、クリップボードへのコピーが行われていない状態です。
上記の原因について、ご助言をいただけると幸いです
あなたの回答
tips
プレビュー