使所選文本加粗:HTML5 content可編輯檢查格式是否與execCommand一起應用?
document.execCommand('bold', null, null);
當用戶選擇了一段文本再次(或它的一部分),你怎麼能知道它已經進行了大膽?
粗體只是一個例子。該commandName
可能是underline
,heading
,createLink
...
使所選文本加粗:HTML5 content可編輯檢查格式是否與execCommand一起應用?
document.execCommand('bold', null, null);
當用戶選擇了一段文本再次(或它的一部分),你怎麼能知道它已經進行了大膽?
粗體只是一個例子。該commandName
可能是underline
,heading
,createLink
...
document.queryCommandState
確定是否給定的命令已經對當前 選擇執行。
來源:http://blog.whatwg.org/the-road-to-html-5-contenteditable#how
顯然我沒有搜索不夠好。
在IE或Chrome中似乎不起作用。 – David