1

如何将表单标签放入预先格式化的标签中?

谢谢

4

1 回答 1

4

你不能。

<!ENTITY % pre.exclusion "IMG|OBJECT|BIG|SMALL|SUB|SUP">
<!ELEMENT PRE - - (%inline;)* -(%pre.exclusion;) -- preformatted text -->

http://www.w3.org/TR/html4/struct/text.html#h-9.3.4

pre 元素可能只包含组中的元素%inline(而不是所有元素)。表单元素不是这些元素之一。

于 2010-12-27T19:12:24.710 回答