开发者

Jeditable edit without losing styles during editing?

Is it possible to keep the styles whilst editing, kind of like a rich text editor? It currently开发者_开发知识库 changes to a plaintext editor but it would be nice if you could just press an edit button and it allows you to (truly) edit in-line


It is possible by styling elements via css properties like

.editable form,
.editable input {
    margin: inherit;
    padding: inherit;
    font: inherit;
    color: inherit;
    background: inherit;
    border: inherit
}

where editable class is a selector for Jeditable


NOTE: JEditable uses <button /> node instead of <input type="button" />, so for styling buttons via CSS you need:

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

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜