我正在从XML文件创建表。该表具有三列(名称,日期,机密)和动态行。我在秘密列(第三列)的标题上创建了一个复选框。当我单击复选框时,它应仅显示具有相同“秘密”和相同“名称”的那些日期的最早的一行。如果两行具有两个相同的机密,但名称不同,则应显示两行。 XSLT文件中的主要部分只是复选框。我不确定我是否真的需要onchange =“ identicalSecrets()”作为xslt代码。
有关JavaScript,请参见下面的代码。它不起作用,所以我很确定我在JavaScript代码上有很多错误。
XSLT或HTML:
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:fo="http://www.w3.org/1999/XSL/Format">
<xsl:template match="/">
<html>
<head><title>Shared Secrets</title></head>
<body>
<h1>Shared Secrets</h1>
<table id="myTable">
<colgroup>
<col width="150" style="background-color:red"></col>
<col width="165"></col>
</colgroup>
<tr style ="background-color:grey">
<th>plane
<select id="modelRangeDropdown" onchange="filterReports()">
<option selected="selected">All</option>
<xsl:for-each select="logstore/plane">
<option>
<xsl:value-of select="Name" />
</option>
</xsl:for-each>
</select>
</th>
<th>Datum</th>
<th>Secret
<input type="checkbox" id="identicalSecrets" onchange="identicalSecrets()"></input>
<label for="identicalSecrets">hide identical secrets</label>
</th>
</tr>
<xsl:for-each select="logstore/plane/trigger">
<tr>
<td><xsl:value-of select="../Name"/></td>
<td><xsl:value-of select="date"/></td>
<td><xsl:value-of select="secret"/></td>
</tr>
</xsl:for-each>
</table>
<script type="text/javascript" src="/../../filterReports.js"></script>
<script type="text/javascript" src=/../../identicalSecrets.js"></script>
</body>
</html>
</xsl:template>
</xsl:stylesheet>
上面代码的主要部分:
<th>Secret
<input type="checkbox" id="identicalSecrets" onchange="identicalSecrets()"></input>
<label for="identicalSecrets">hide identical secrets</label>
</th>
JavaScript代码:
function identicalSecrets() {
let checkBox, filter, rows, cells, secret;
checkBox=document.getElementById('identicalSecrets');
rows = table.getElementsByTagName("tr");
filter = checkBox.value;
for (let row of rows) {
cells = row.getElementsByTagName("td");
secret = cells[2];
if (filter == true) {
if (secret === row[-1].getElementsbyTagName("td")[2] && secret === row[-1].getElementsbyTagName("td")[0]) { // If the actual secret is equal to the secret in the last row and the modelranges are equal then hide these rows.
row.style.display = "none"; // hide this row
}
else { // if secret or modelrange are not equal
row.style.display = ""; // show this row
}
}
}
}
我希望当我单击该复选框时,除具有最早日期的行(第二列)外,所有具有相同第一列和第三列的行都将消失。
答案 0 :(得分:0)
您的JavaScript有很多问题...
table
的变量,但尚未定义它。row[-1]
无效,因为row
不是数组(rows
是数组),并且-1不是有效索引,因为数组基于0。您确实应该设置一个变量(称为index
)来保持行索引的计数,然后您可以执行rows[index - 1]
来获取上一行secret
值与第一列和第三列进行比较。但是您应该检查第一列的名称getElementsbyTagName
由于小写的“ by”而无法使用因此,将它们放在一起,您的JavaScript可能应该看起来像这样:
function identicalSecrets() {
let table, checkBox, filter, rows, cells, secret, name;
table = document.getElementById('myTable');
checkBox=document.getElementById('identicalSecrets');
rows = table.getElementsByTagName("tr");
filter = checkBox.checked;
let index = 0;
for (let row of rows) {
if (index > 1) {
cells = row.getElementsByTagName("td");
name = cells[0].innerText;
secret = cells[2].innerText;
if (filter == true) {
if (name === rows[index - 1].getElementsByTagName("td")[0].innerText && secret === rows[index - 1].getElementsByTagName("td")[2].innerText) {
row.style.display = "none"; // hide this row
}
else { // if secret or modelrange are not equal
row.style.display = "table-row"; // show this row
}
}
else {
row.style.display = "table-row"; // show this row
}
}
index++;
}
}