入力フォームの文字の色を変える方法
2815 ワード
完成版
作成
使用環境: HTML5 Bootstrap4
index.html
<!--文字変更ボタン-->
<button onclick="document.execCommand('bold');">太字</button>
<button onclick="document.execCommand('italic');">斜め文字</button>
<button onclick="document.execCommand('formatBlock', false, '<h1>')">h1</button>
<button onclick="document.execCommand('formatBlock',false, '<p>')">p</button>
<!--色変更ボタン-->
<button onclick="document.execCommand('foreColor', false, 'red');">赤</button>
<button onclick="document.execCommand('foreColor', false, 'blue');">青</button>
<button onclick="document.execCommand('foreColor', false, 'yellow');">黄色</button>
<button onclick="document.execCommand('foreColor', false, 'green');">緑</button>
<button onclick="document.execCommand('foreColor', false, 'black');">黒</button>
<!--入力フォーム-->
<div id="editor" contenteditable></div>
参考
Author And Source
この問題について(入力フォームの文字の色を変える方法), 我々は、より多くの情報をここで見つけました https://qiita.com/Shou_/items/bade2f012982e8e37ccf著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .