我有一个要在 Firefox 中显示的 XML 文档以及分配的 CSS 文件。我想在 fireox 中启用编辑/设计模式以使用户能够编辑文本内容。就像 contenteditable="true" 对 HTML 内容所做的一样。这对 XML+CSS 内容可行吗?
示例.xml
<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="sample.css" ?>
<doc>
<red>red text</red>
<blue>blue text</blue>
<green>and... green text</green>
</doc>
示例.css
red {
display: block;
color: red;
}
blue {
display: block;
color: blue;
}
green {
display: block;
color: green;
}
谢谢,英戈