我有一个 wordpress 页面,上面显示了带有 ajax 添加到购物车操作的产品。单击按钮时,我想获取名称=数量的输入值。我想使用 jquery prev() 函数来执行此操作,因为还有许多其他具有相同属性的输入。那么我该怎么做呢?我有
jQuery(document).ready(function(e){
e(document).on("click",".add_to_cart_button",
function(){
var t=e(this);
})})
<form action="/shop/?add-to-cart=1732" class="cart" method="post" enctype="multipart/form-data">
<div class="quantity buttons_added">
<input type="button" value="-" class="minus">
<input type="number" step="1" name="quantity" value="1" title="Qty" class="input-text qty text">
<input type="button" value="+" class="plus">
</div>
<button type="submit" data-product_id="1732" data-product_sku="menu-aug-02" data-quantity="1" class="add_to_cart_button button product_type_simple">Add to cart</button></form>