当我选择"Keyboard layout"
时,它将使用js生成按钮-但click事件不适用于动态生成的按钮。我认为是因为准备好文档后,元素“ .prices-tier
”不存在。仅当我选择布局时才会生成。
部分代码:
require(['jquery'], function(){
jQuery(document).ready(function(){
const currencySymbol = jQuery('.price').text()[0];
var standartPrice = Number(jQuery('.price-wrapper').attr('data-price-amount'));
jQuery('.prices-tier').on('click','.btn', function () {
var quantity = Number(jQuery(this).attr("data-qty"));
var price = jQuery(this).attr("data-amount");
jQuery('.qty-default').val(quantity);
jQuery('#product-price-'+"<?php echo $_product->getId();?>"+' .price').html(currencySymbol+price);
// jQuery('.product-info-main>div>.price-box>.price-container>.price-wrapper>.price').html(currencySymbol+price);
jQuery('.qty-default').trigger('input');
}
);
生成的html元素:
<div class="prices-tier items w-75 btn-group">
<button type="button" class="btn btn-light border border-bottom-0 border-top-0 bg-primary" data-qty="25" data-amount="27.21" onclick="">
4%</button>
<button type="button" class="btn btn-light border border-bottom-0 border-top-0 bg-primary" data-qty="50" data-amount="26.5" onclick="">
6%</button>
</div>
答案 0 :(得分:2)
您需要使用event delegation并将侦听器附加到父级(已经存在于DOM中)或document
中。这样事件就可以从新元素中冒出来,并被监听者捕获。
jQuery(document).on('click', '.prices-tier .btn', function () {
注意,这不仅是jQuery的技巧,这也是JS事件的工作方式。例如,它在您有例如项目列表(1000)但又不想向每个事件监听器添加实例的情况下也很有用。您将一个事件侦听器附加到父容器(也许是<ul>
)上,它可以捕获所有从其子容器冒出的事件并对其进行处理。