gpt4 book ai didi

javascript - 为 ajax 弹出窗口发送文本值

转载 作者:行者123 更新时间:2023-11-30 12:20:13 24 4
gpt4 key购买 nike

这是我的javascript

<script>    
jQuery(function ($) {

$('.button').on('click', function () {
var id = $(this).data('id');

$.ajax({
url: '/ajax.php',
data: {
id: id
},
method: 'POST',
success: function (html) {
$('body').append(html);
$(html).bPopup();
},
error: function (returnValue) {}
});
});


});
</script>

这是我的html

<input type="text" name="qty" id="qty" maxlength="12" value="1" title="Qty">
<button type="button" class="button small cart-button" data-id="xxxx">Add to Cart</button>

ajax.php

<?php echo $_POST['id']; ?> // show id : xxxx

我想为ajax.php 文件发送数量值。那么该怎么做我想从 php 中回显它..请帮助我...谢谢

最佳答案

请试试这个

<script>    
jQuery(function ($) {

$('.button').on('click', function () {
var id = $(this).data('id');
var qtyValue = $("input[type='text'][name='qty']").val();
$.ajax({
url: '/ajax.php',
data: {
id: id,
quantityValue : qtyValue
},
method: 'POST',
success: function (html) {
$('body').append(html);
$(html).bPopup();
},
error: function (returnValue) {}
});
});


});
</script>

关于javascript - 为 ajax 弹出窗口发送文本值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31364740/

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