| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

「JavaScript テキストエリアの内容をクリップボードにコピー」の版間の差分

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
 
6行目: 6行目:
 
  txt_area.focus();
 
  txt_area.focus();
 
  txt_area.select();
 
  txt_area.select();
  var txt[[R]]ange = txt_area.createText[[R]]ange();
+
  var txtRange = txt_area.createTextRange();
  txt[[R]]ange.execCommand("copy");
+
  txtRange.execCommand("copy");

2022年5月19日 (木) 14:49時点における最新版

JavaScript テキストエリアの内容をクリップボードにコピー

IE
var txt_area = document.getElementById(text_area_id);
txt_area.focus();
txt_area.select();
var txtRange = txt_area.createTextRange();
txtRange.execCommand("copy");