作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我想使用 execcommand 'formatblock' 在我的 contenteditable div(自己的富文本编辑器)中通过 'p' 标记或具有特定类或 Id 或任何 css 样式的 span 选择一行。我为此搜索了很多,但找不到对我有值(value)的东西。
document.execCommand('formatblock', false, 'p');
如何在此代码中添加类或 id 或 css?
最佳答案
如果你想在内容可编辑的div中为CSS添加id或class,那么你将使用下面的代码---
<script>
function CssFnctn()
{
document.execCommand('formatblock', false, 'p')
var listId = window.getSelection().focusNode.parentNode;
$(listId).addClass("oder2");
}
</script>
.oder2
{
padding-left: 3em;
}
关于javascript - 如何在 execCommand formatBlock 'p' 标签中添加 class 或 id 或 CSS 样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23380628/
我是一名优秀的程序员,十分优秀!