1

我有一个如下所示的 xml 文件,我想通过引用它的 URL 过滤掉目标记录,比如http://localhost/rc.xml?rid=2,然后网络浏览器将显示所有 rcid=2 的记录

    <?xml version="1.0">

    <?xml-stylesheet type="text/xsl" href="rc.xsl" ?>

    <RInfo "Location="KLN">
    <Info rcid="1" >1

    <RCHNo>1</RCHNo>

        <BrandNo>J252</BrandNo>

<Age>6</Age>

    </Info>
    <Info rcid="1" >1

<RCHNo>2</RCHNo>

<BrandNo>J132</BrandNo>

<Age>6</Age>

    </Info>
    <Info rcid="2" >2
<RCHNo>1</RCHNo>

<BrandNo>K152</BrandNo>

<Age>3</Age>

    </Info>
    <Info rcid="2" >2
<RCHNo>2</RCHNo>

<BrandNo>K152</BrandNo>

<Age>4</Age>

    </Info>
    </RInfo>

我在下面有一个 xsl 废料,我想做的是通过 javascript 获取 url 参数并对其进行按摩以检索“=”之后的值

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

    xmlns:xalan="http://xml.apache.org/xslt"

    xmlns:my-ext="ext1" 

    extension-element-prefixes="my-ext" 

    version="1.0">

 <xsl:output method="xml"/>
      <xalan:component prefix="my-ext" elements="getrid">
<xalan:script lang="javascript">
<![CDATA[
    function getrid() {
      var ridstr= window.location.toString().split("=");
      //alert ("2");
      return ridstr[1];
      }
]]>
     </xalan:script>
 </xalan:component>
 ::::
 ::::
 <xsl:if test="@rcid=my-ext:getrid">
4

0 回答 0