본문 바로가기

컴터/Ajax

xslt 에서 링크 넣고 타겟지정...

336x280(권장), 300x250(권장), 250x250, 200x200 크기의 광고 코드만 넣을 수 있습니다.
 제목 :
    <xsl:element name="a">
    <xsl:attribute name="href">
     <xsl:value-of select="outlink" />
    </xsl:attribute>
   
    <xsl:value-of select="title" />    
    </xsl:element>
    <br />
    <xsl:value-of select="passage" />

->>>>>>>>>>self로 링크 넣을때 이렇게 해도되고..


제목 :
    <a target="_blank">
    <xsl:attribute name="href">    
     <xsl:value-of select="outlink" />    
    </xsl:attribute>
   
    <xsl:value-of select="title" />
    </a>    
   <br />
   <xsl:value-of select="passage" />

->>>>>>>>>>타겟 지정할때 이렇게..

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

배열로 데이터 전송.  (0) 2008.08.05
flash - mp3 플레이어  (0) 2007.12.31
XSL 레퍼런스 정리  (0) 2007.10.01
xslt 강좌 문서  (0) 2007.09.28