我正在使用html內置的contenteditable
功能實現自定義文本編輯器。我需要知道用戶在文本編輯器上選擇文本時是否大膽。如何檢查,所選文本是否爲粗體(contenteditable)
在這裏,我有什麼權利現在:
HTML
<button onclick="boldit()">B</button>
<div id="editor" contenteditable="true" class="email-body">
This is an <strong>editable</strong> paragraph.
</div>
的Javascript
function boldit(){
document.execCommand('bold');
}
閱讀如何在詢問之前詢問[mcve]。 –
你有沒有檢查http://stackoverflow.com/questions/22323035/jquery-check-if-font-weight-is-normal-or-bold? –
@SagarV爲這個問題增加了一個示例代碼。 – Dasun