본문 바로가기

컴터/Ajax

xslt 강좌 문서

336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
출처 : http://tong.nate.com/kwangsuya/40554589

xslt 강좌 문서


1.XML 문서와 XSLT 문서 연결하기

<?xml-stylesheet  type="text/xsl"  href="XSL문서명">

XML 문서에 위의 구문을 삽입하면 익스플로러 내부에 있는 XSL 해석기에 의해서 문서 구조가 변환된다.


2.XSLT 문서 작성하기


도서목록01.xml
<?xml version="1.0" encoding="EUC-KR"?>

<?xml-stylesheet type="text/xsl" href="도서목록02.xsl" ?>

<books>
      <book>
           <part>컴퓨터</part>
           <publisher>길벗</publisher>
           <title>XML 무작정 따라하기</title>
           <author>최 배근,박 준서</author>
     </book>
</books>


주소록02.xsl

<?xml version="1.0" encoding="EUC-KR"?>


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

       <xsl:output method="html" encoding="EUC-KR" />

       <xsl:template match="books/book">
 
           <html>
           <head>
                 <title>도서 목록 (XSLT 테스트)</title>
           </head>
           <body>
           <center>
           <h1>
                도서 목록
           </h1>
 
           <table border="1">
                <tr>
                       <td>분 류</td>
                       <td>
                              <xsl:value-of select="part" />
                       </td>
                </tr>
                <tr>
                       <td>제 목</td>
                       <td>
                              <xsl:value-of select="title" />
                       </td>
                </tr>
                <tr>
                        <td>저 자</td>
                        <td>
                              <xsl:value-of select="author" />
                        </td>
                </tr>
           </table>
 
           </center>
           </body>
           </html>
 
       </xsl:template>

</xsl:stylesheet>


변환결과

도서목록

분 류 컴퓨터
제목 XMl 무작정 따라하기
저 자 최 배근, 박 준서

http://blog.naver.com/yanggun7201/80036976297

'컴터 > Ajax' 카테고리의 다른 글

배열로 데이터 전송.  (0) 2008.08.05
flash - mp3 플레이어  (0) 2007.12.31
XSL 레퍼런스 정리  (0) 2007.10.01
xslt 에서 링크 넣고 타겟지정...  (0) 2007.09.28