gpt4 book ai didi

javascript - 选择子元素 jQuery

转载 作者:太空狗 更新时间:2023-10-29 13:13:46 25 4
gpt4 key购买 nike

我有一个结构如下的表:

<table>
<tbody>
for loop here
<tr>
<td>Item X Attribute 1</td>
<td>Item X Attribute 2</td>
<td><button name="test" onclick="display_variants()">Hide my kids</button></td>
</tr>
<tr>
<tbody class="variants_info">
<tr>
<td>Item X Variant 1</td>
<td>Item X Variant 2</td>
</tr>
</tbody>
</tr>
endfor loop
</tbody>
</table>

因此该结构重复 Y 次。

我正在尝试制作一个隐藏所选行的 tbody.variants 的脚本。

我目前的情况是这样的:

<script>
function display_variant(){
if($('.variants_info').is(":visible")){
$('.variants_info').hide();
}
else{
$('.variants_info').show();
}
}
</script>

但这会隐藏所有行的变体。

有没有办法选择特定行的 child ?另外,如何从隐藏的 tbody.variants 开始? (从我访问该页面时开始)。

编辑:目前正在密切关注这个: enter image description here

更新:我已经设法将结构更改为:

<table>
for loop
<tbody>
<tr>
<td>image for el 1</td>
<td>attr for el 1</td>
<td><button type='button' name='test'>Click Me</button></td>
</tr>
for loop
<tr class='variants_info'>
<td>variant1 for el 1</td>
<td>variant2 for el 1</td>
</tr>
endfor
</tbody>
endfor
</table>

更新 2: 实际代码是这样的:

<table class="pure-table pure-table-bordered">
<tbody>
{% for product in collection.products %}
{% if product.available %}

<tr class="{% cycle 'pure-table-odd', '' %}">
<td>
<img src="{{ product.featured_image.src | product_img_url: 'thumb' }}" alt="{{ product.featured_image.alt | escape }}" />
</td>
<td>{{ product.title }}</td>
<td style="text-align:right">
<button type="button" name="click_me">Click Me</button>
</td>
</tr>
{% for variant in product.variants %}
<tr>
<td>{{variant.title}}</td>
<td>{{variant.price | money }}</td>
</tr>
{% endfor %}
{% endif %}
{% endfor %}
</tbody>
</table>

<script>
$("td button").click(function(){
$(this).closest('tr').next().toggle();
})
</script>

我仍然无法让 JS 工作.. =/当前只隐藏第一个变体(而不是点击按钮的所有变体)

最佳答案

我建议用类名标记包含产品的行,例如“产品”,像这样:

<tr class="product {% cycle 'pure-table-odd', '' %}">
<td>
<img src="{{ product.featured_image.src | product_img_url: 'thumb' }}"
alt="{{ product.featured_image.alt | escape }}" />
</td>
<td>{{ product.title }}</td>
<td style="text-align:right">
<button type="button" name="click_me">Click Me</button>
</td>
</tr>

不会将该类添加到具有变体的行中。

然后在您的 JavaScript 中使用 nextUntil 匹配所有下一个变体行(没有“产品”类)的方法,直到但不包括下一个 product 行,并应用 toggle()所有这些的方法:

$("td button").click(function(){
$(this).closest('tr').nextUntil('.product').toggle();
});

替代结构 1

您可以创建嵌套表,而不是单个表,每个产品一个,包含变体。它看起来有点像这样:

<table class="pure-table pure-table-bordered">
<tbody>
{% for product in collection.products %}
{% if product.available %}

<tr class="{% cycle 'pure-table-odd', '' %}">
<td>
<img src="{{ product.featured_image.src | product_img_url: 'thumb' }}"
alt="{{ product.featured_image.alt | escape }}" />
</td>
<td>{{ product.title }}</td>
<td style="text-align:right">
<button type="button" name="click_me">Click Me</button>
</td>
</tr>
<tr>
<table class="some other class specific for variants">
<tbody>
{% for variant in product.variants %}
<tr>
<td>{{variant.title}}</td>
<td>{{variant.price | money }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</tr>
{% endif %}
{% endfor %}
</tbody>
</table>

这有优点也有缺点。主要缺点是这些子表的列与主表中的列不对齐。但这取决于你想要什么......

JavaScript 代码必须与您最初拥有的代码相同:

$("td button").click(function(){
$(this).closest('tr').next().toggle();
});

替代结构2

您还可以用 tbody 包裹每个“部分”(由一个产品行和属于它的变体行组成)标签。尽管不常见,但如 MDN 所述,这是允许的:

Note that unlike the <thead>, <tfoot>, and <caption> elements however, multiple <tbody> elements are permitted (if consecutive), allowing the data-rows in long tables to be divided into different sections, each separately formatted as needed.

这与您的原始 HTML 不同,您在其中有 tbody元素作为 tr 的子元素元素,这是无效的 HTML。

看起来像这样:

<table class="pure-table pure-table-bordered">
{% for product in collection.products %}
{% if product.available %}

<tbody>
<tr class="{% cycle 'pure-table-odd', '' %}">
<td>
<img src="{{ product.featured_image.src | product_img_url: 'thumb' }}"
alt="{{ product.featured_image.alt | escape }}" />
</td>
<td>{{ product.title }}</td>
<td style="text-align:right">
<button type="button" name="click_me">Click Me</button>
</td>
</tr>
{% for variant in product.variants %}
<tr>
<td>{{variant.title}}</td>
<td>{{variant.price | money }}</td>
</tr>
{% endfor %}
</tbody>
{% endif %}
{% endfor %}
</table>

然后您可以使用 nextAll()隐藏变体行的方法,因为它们由 tbody 分隔下一个产品行的包装:

$("td button").click(function(){
$(this).closest('tr').nextAll().toggle();
});

最初隐藏变体行

如果您希望首先隐藏所有变体,则将以下属性添加到 HTML 代码中的那些行:

<tr style="display:hidden">

您当然不会对产品行执行此操作。此外,您可能想为此定义一个 CSS 类(例如 tr.hidden { display:hidden; } 而不是使用 style

jQuery toggle()方法将覆盖此 style显示时,隐藏时重新恢复。

关于javascript - 选择子元素 jQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36946868/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com