我想使用粗体和斜体选项制作 contenteditable div,以便在具有相同选项的 keyup 上的另一个 div 中显示内容。我设法显示文本,但不是选项。请帮忙
html:
<button onclick="document.execCommand('bold');">B</button>
<button onclick="document.execCommand('italic');">I</button>
<div id="textarea" contenteditable></div>
<div id="textarea-show"></div>
jQuery:
$('#textarea').keyup(function() {
$('#textarea-show').html($(this).text());
});
CSS:
#textarea { background-color: #fff;
border: 1px solid #ccc;
color: #555;
font-size: 14px;
height: 34px;
width: 450px;
}
#textarea-show{font-size: 2rem;
color:#666;
height:50px;
border: 1px solid #ccc;
width: 450px;
}