jQuery onChange使用woocommerce_variation_select_change定位到当前元素

时间:2018-09-12 06:04:19

标签: php jquery wordpress woocommerce variations

我正在使用WooCommerce函数woocommerce_variation_select_change触发显示并在选择选项后隐藏。我对<TD class="value">元素有多种选择。所有元素都在<form class="variations_form">之内。

$( ".variations_form" ).on( "woocommerce_variation_select_change", function () {
     console.log( "Options changed" );

     $(this).parent('.value').hide();

 } );

因此,在触发后,所有<TD class="value">元素都被隐藏。我只想定位当前的<TD class="value">

我尝试使用each()one()$('.value', this) 没有成功。

0 个答案:

没有答案