XSLTProcessor:removeParameter() 方法
XSLTProcessor
接口的 removeParameter()
方法从处理器中导入的样式表中删除参数 (<xsl:param>
) 及其值。
语法
js
removeParameter(namespaceURI, localName)
参数
namespaceURI
-
与参数名称关联的命名空间。一个 "null" 值与空字符串 (
""
) 相同。 localName
-
关联命名空间中参数的名称。
返回值
无 (undefined
).
示例
使用 removeParameter()
首先,将 showItems
参数设置为 "yes"
,这将允许在输出中显示列表项。
之后,使用 removeParameter()
删除 showItems
参数,并再次执行转换,结果不显示任何项目。
HTML
html
<div id="result"></div>
JavaScript
js
const xmlString = `
<items>
<item>Item 1</item>
<item>Item 2</item>
</items>
`;
const xsltString = `
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:param name="showItems" select="'yes'"/>
<xsl:template match="/">
<!-- If showItems is 'yes', display the list of items -->
<xsl:if test="$showItems = 'yes'">
<ul>
<xsl:for-each select="items/item">
<li><xsl:value-of select="."/></li>
</xsl:for-each>
</ul>
</xsl:if>
<!-- If showItems is 'no', display a message -->
<xsl:if test="$showItems = 'no'">
<div>No content to show</div>
</xsl:if>
</xsl:template>
</xsl:stylesheet>
`;
const parser = new DOMParser();
const xmlDoc = parser.parseFromString(xmlString, "application/xml");
const xsltDoc = parser.parseFromString(xsltString, "application/xml");
const xsltProcessor = new XSLTProcessor();
xsltProcessor.importStylesheet(xsltDoc);
// Set 'showItems' to 'no' and perform the first transformation
xsltProcessor.setParameter(null, "showItems", "no");
const resultContainer = document.getElementById("result");
let resultFragment = xsltProcessor.transformToFragment(xmlDoc, document);
resultContainer.appendChild(resultFragment);
// Add a horizontal rule to separate the results
resultContainer.appendChild(document.createElement("hr"));
// Remove the 'showItems' parameter, reverting it to the default value ('yes')
xsltProcessor.removeParameter(null, "showItems");
resultFragment = xsltProcessor.transformToFragment(xmlDoc, document);
resultContainer.appendChild(resultFragment);
结果
规范
规范 |
---|
DOM 标准 # dom-xsltprocessor-removeparameter |
浏览器兼容性
BCD 表格仅在启用 JavaScript 的浏览器中加载。