<div>
コンテンツをにコピーする特定のコードがあり<textarea>
ますが、のスタイル(フォントファミリ)をコピーしません<div>
。通常のフォントで貼り付けます。この問題を解決するにはどうすればよいですか?
HTML
<input type="text" id="styledText" placeholder="Place your Name..." size="50" name="styledText" class="changeMe">
<div id="fontselect" class="changeMe" onClick="copyText()" style="font-family: Times New Roman;font-size: 22px; font-weight: bold; cursor:pointer;">Place your Name...</div>
Javascript
function copyText() {
var output = document.getElementById("fontselect").innerHTML;
document.getElementById("styledText").value = output;
}
前もって感謝します :)