2 回答

TA貢獻(xiàn)1803條經(jīng)驗(yàn) 獲得超3個(gè)贊
問題出在你的查詢中,tbody你寫的#body1所以它會(huì)查詢帶有 ID 的元素,body1而在你的 html 代碼中,tbody是類body1而不是 id
const rows = document.querySelectorAll("#body1 > tr"); // <--- will select element with id="body1"
你的 HTML 代碼:
...
</thead>
<tbody class="body1"> <!--body is using attribute class -->
<tr class="vypis-riadok">
...
你應(yīng)該做的是使用類查詢選擇器,更改#為.
const rows = document.querySelectorAll(".body1 > tr"); // <--- will select element with class="body1"
之后你的 javascript 代碼應(yīng)該沒問題,現(xiàn)在添加 css 樣式show和hidden類
.hidden{
display: none;
添加回答
舉報(bào)