399 バイト追加
、 2020年2月15日 (土) 07:33
==JavaScript テキストエリアの内容をクリップボードにコピー==
*[http://msdn.microsoft.com/ja-jp/library/cc428119.aspx execCommand]
*[http://msdn.microsoft.com/ja-jp/library/cc427934.aspx TextRange]
=====IE=====
var txt_area = document.getElementById(text_area_id);
txt_area.focus();
txt_area.select();
var txtRange = txt_area.createTextRange();
txtRange.execCommand("copy");