码迷,mamicode.com
首页 > 其他好文 > 详细

XSLT声明

时间:2014-07-11 21:05:26      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:style   http   art   for   io   type   

1、XSL声明:

把文档声明为 XSL 样式表的根元素是 <xsl:stylesheet> 或 <xsl:transform>,并且必须包含属性 version="1.0"。

<xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">

 

2、把 XSL 样式表链接到 XML 文档

向 XML 文档("cdcatalog.xml")添加 XSL 样式表引用:

<?xml version="1.0" encoding="ISO-8859-1"?>

<?xml-stylesheet type="text/xsl" href="cdcatalog.xsl"?>

<catalog>

<cd>

<title>Empire Burlesque</title>

<artist>Bob Dylan</artist>

<country>USA</country>

<company>Columbia</company>

<price>10.90</price>

<year>1985</year>

</cd>

.

.

.

</catalog>

XSLT声明,布布扣,bubuko.com

XSLT声明

标签:style   http   art   for   io   type   

原文地址:http://www.cnblogs.com/ghpaas/p/3833356.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!