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 |
浏览器兼容性
加载中…