TinyMCE:如果按下 Tab 键,则嵌套列表
如果您在tinymce中创建一个无序列表并点击tab键,创建的代码如下所示:
<ul>
<li><span style="white-space: pre;"> </span>list item 1</li>
</ul>
但是,如果您单击编辑器工具栏中的缩进按钮(而不是tab键),则会创建以下代码:
<ul>
<li>list item 1
<ul>
<li>list item 1.1</li>
</ul>
</li>
</ul>
我想当我按下 Tab 键时也会发生同样的事情。我想要嵌套列表而不仅仅是一个空格。有办法实现这一点吗?谢谢!
if you create an unordered list in tinymce and hit the tab key the code created looks like this:
<ul>
<li><span style="white-space: pre;"> </span>list item 1</li>
</ul>
however, if you click on the indent button in the editor's toolbar (instead of the tab key), the following code is created:
<ul>
<li>list item 1
<ul>
<li>list item 1.1</li>
</ul>
</li>
</ul>
i would like that same thing to happen when i press the tab key. i want nested lists instead of just a white space. is there a way to achieve this? thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,有。您需要做的就是为以下事件之一添加处理程序:onKey(Down 或 Pressed)。它应该看起来或多或少像这样:
Yes, there is. All you need to do is to add a handler for one of the following events: onKey(Down or Pressed). It should look more or less like this: