如何使點擊圖片能在新窗口打開?_動易Cms教程

      編輯Tag賺U幣
      教程Tag:暫無Tag,歡迎添加,賺取U幣!


      問題:如何使點擊圖片能在新窗口打開?

      解決方法:修改顯示圖片的標簽,給<a>增加一條在新窗口打開的屬性_blank。
      以默認商城首頁“最新商品”為例,查模板,找到調用的標簽是
      {PE.Label id="最新商品子欄目一列式列表循環" shownum="8" parentid="@RequestInt_id" /}
      標簽管理中,查找“最新商品子欄目一列式列表循環”找到
      {PE.Label id="顯示分類商品一列式列表循環" parentid="<xsl:value-of select="$parentid" />" shownum="<xsl:value-of select="$shownum" />" title="最新商品" titlelen="<xsl:value-of select="$titlelen" />" arraynodeid="<xsl:value-of select="arrchildid"/>" isnew="convert(int,isnew) desc," /}
      查找“顯示分類商品一列式列表循環”,修改其內容
      <a>
      <xsl:attribute name="href">
      <xsl:value-of disable-output-escaping="yes" select="pe:GetInfoPath(NodeID,GeneralID,InputTime,PinyinTitle)"/>
      </xsl:attribute>
      <xsl:attribute name="target">_blank</xsl:attribute>
      <!--顯示圖片-->
      <xsl:element name="img">
      <xsl:attribute name="src">
      <xsl:choose>
      <xsl:when test="string-length(ProductThumb)=0">
      <xsl:value-of select="pe:UpLoadDir()"/>nopic.gif
      </xsl:when>
      <xsl:otherwise>
      <xsl:value-of select="pe:ConvertAbsolutePath(ProductThumb)"/>
      </xsl:otherwise>
      </xsl:choose>
      </xsl:attribute>
      <!--顯示圖片結束-->
      添加紅色的代碼,即可。

      說明:
      1、上面的方法也就是給<a>增加一條在新窗口打開的屬性target=_blank
      2、其它鏈接也可以類似這樣修改。

      查看更多 動易Cms教程  動易Cms模板

      來源:模板無憂//所屬分類:動易Cms教程/更新時間:2009-04-02
      相關動易Cms教程