在编辑过程中可编辑但不丢失样式?

时间:2010-07-12 09:53:43

标签: jquery jeditable

是否可以在编辑时保留样式,有点像富文本编辑器?它目前更改为纯文本编辑器,但如果您只需按一个编辑按钮就可以了,它可以让您(真正)在线编辑

2 个答案:

答案 0 :(得分:4)

可以通过css属性(如

)设置元素
.editable form,
.editable input {
    margin: inherit;
    padding: inherit;
    font: inherit;
    color: inherit;
    background: inherit;
    border: inherit
}

其中editable类是Jeditable的选择器

答案 1 :(得分:0)

注意: JEditable 使用<button />节点而不是<input type="button" />,因此对于通过 CSS 设置样式按钮,您需要:

.editable button
{
  /** style goes here **/
}