首页 > 其他 > 详细

XSLT声明

时间:2014-07-11 21:04:33      阅读:382      评论:0      收藏:0      [点我收藏+]

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声明

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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!