📄 book.xsl
字号:
<?xml version = "1.0"?>
<xsl:stylesheet xmlns:xsl = "http://www.w3.org/1999/XSL/Transform"
version = "1.0">
<xsl:output method = "xml" omit-xml-declaration = "no"
indent = "yes" doctype-system =
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"
doctype-public = "-//W3C//DTD XHTML 1.0 Strict//EN"/>
<!-- book.xsl -->
<!-- XSL document that transforms XML into XHTML -->
<!-- specify the root of the XML document -->
<!-- that references this stylesheet -->
<xsl:template match = "product">
<html xmlns = "http://www.w3.org/1999/xhtml">
<head>
<!-- obtain book title from JSP to place in title -->
<title><xsl:value-of select = "title"/></title>
<link rel = "stylesheet" href = "styles.css"
type = "text/css" />
</head>
<body>
<p class = "bigFont"><xsl:value-of select = "title"/></p>
<table>
<tr>
<!-- create table cell for product image -->
<td rowspan = "5"> <!-- cell spans 5 rows -->
<img style = "border: thin solid black" src =
"images/{ imageFile }" alt = "{ title }" />
</td>
<!-- create table cells for price in row 1 -->
<td class = "bold">Price:</td>
<td><xsl:value-of select = "price"/></td>
</tr>
<tr>
<!-- create table cells for ISBN in row 2 -->
<td class = "bold">ISBN #:</td>
<td><xsl:value-of select = "isbn"/></td>
</tr>
<tr>
<!-- create table cells for edition in row 3 -->
<td class = "bold">Edition:</td>
<td><xsl:value-of select = "editionNumber"/></td>
</tr>
<tr>
<!-- create table cells for copyright in row 4 -->
<td class = "bold">Copyright:</td>
<td><xsl:value-of select = "copyright"/></td>
</tr>
<tr>
<!-- create Add to Cart button in row 5 -->
<td>
<form method = "post" action = "addToCart"><p>
<input type = "submit" value = "Add to Cart" />
</p></form>
</td>
<!-- create View Cart button in row 5 -->
<td>
<form method = "get" action = "viewCart.jsp"><p>
<input type = "submit" value = "View Cart" />
</p></form>
</td>
</tr>
</table>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
<!--
***************************************************************
* (C) Copyright 2001 by Deitel & Associates, Inc. and *
* Prentice Hall. All Rights Reserved. *
* *
* DISCLAIMER: The authors and publisher of this book have *
* used their best efforts in preparing the book. These *
* efforts include the development, research, and testing of *
* the theories and programs to determine their effectiveness. *
* The authors and publisher make no warranty of any kind, *
* expressed or implied, with regard to these programs or to *
* the documentation contained in these books. The authors *
* and publisher shall not be liable in any event for *
* incidental or consequential damages in connection with, or *
* arising out of, the furnishing, performance, or use of *
* these programs. *
***************************************************************
-->
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -