跳至内容

XSLTForms/HelloWorld

来自维基教科书,面向开放世界的开放书籍

如果 XSLTForms 安装正确,则以下表单(或与此类似的表单)即可正常工作。

  <?xml-stylesheet href="xsltforms/xsltforms.xsl" type="text/xsl"?>
  <html xmlns="http://www.w3.org/1999/xhtml"
        xmlns:xforms="http://www.w3.org/2002/01/xforms" 
        xmlns:my="http://www.example.com/my-data">
       <head> 
              <!--The Model is defined within the head of the xhtml document-->
              <xforms:model> 
                     <!--The instance is defined within the model-->
                     <xforms:instance>
                            <my:data>Hello World</my:data>
                     </xforms:instance>
              </xforms:model>
       </head>
       <body> 
          <!--The view is defined within the body of the document-->
          <xforms:group>
              <xforms:output ref="/my:data">
                  <xforms:label>Output Control Example</xforms:label>
              </xforms:output>
          </xforms:group>
       </body>
   </html>

备注

该表单包括一个 xml-stylesheet 处理指令(第 1 行,已突出显示)。href 伪属性的值应为对 xsltforms.xsl 样式表的相对引用。该示例假定 XSLTForms 库已安装在子目录 xsltforms 中;相对引用的值将根据库的相对位置以及表单位置而有所不同。例如在另一个上下文中,处理指令可能为 <?xml-stylesheet href="../../../lib/xsltforms-1.0RC2/xsltforms.xsl" type="text/xsl"?>

华夏公益教科书