我正在使用
document.execCommand('insertUnorderedList');
在我的代码中。
在Chrome中,它可以正常工作并插入:
<li>
<a href="/example.html">example</a>
</li>
但在Firefox中,同样的命令会插入:
<li>
<a href="/example.html">example</a>
*<br>*
</li>
我怎么能预先插入这个<br>
标签?