使用 jquery 获取此表单输入

发布于 2024-11-06 13:27:24 字数 732 浏览 0 评论 0原文

你好,我在每棵树中有一个很大的产品表,有一个带有两个输入的表单。 一种输入是管理员可以设置产品价格的文本。 第二个隐藏在产品 ID 值中。

现在有这个 jquery 代码。

$(function() {
    $(".form").submit(function() {
        var dyo_id = $(".dyo_id").val();
        var price = $(".setprice").val();

            $.ajax({
                type: 'post',
                url: 'setprice.php',
                data: 'price='+price+'&dyo_id='+dyo_id,
                cache: false,
                success: function(data) {
                    $('.price'+dyo_id).html(data);
                    alert('success');
                }
            });

        return false;
    });

});

问题在于他们选择第一个产品的第一个输入的变量,

这只是一个简单的问题,我如何选择我所在的当前输入?

抱歉我的英语不好。

hello i have a big table of products in each tree there is a form with two inputs.
one input is text where the admin can set the product price.
the second one is hidden with the value of the product id.

now there is this jquery code.

$(function() {
    $(".form").submit(function() {
        var dyo_id = $(".dyo_id").val();
        var price = $(".setprice").val();

            $.ajax({
                type: 'post',
                url: 'setprice.php',
                data: 'price='+price+'&dyo_id='+dyo_id,
                cache: false,
                success: function(data) {
                    $('.price'+dyo_id).html(data);
                    alert('success');
                }
            });

        return false;
    });

});

the problem is with the variables they select the first inputs of the first product

it's just a simple question how can i select the current inputs that i am on?

sorry for my poor english.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

飘落散花 2024-11-13 13:27:24

为什么不尝试使用 serialize()

$(function() {
    $(".form").submit(function() {
        var dyo_id = $(".dyo_id").val();
        var data_ajax = $(this).serialize(); // <==

            $.ajax({
                type: 'post',
                url: 'setprice.php',
                data: data_ajax,
                cache: false,
                success: function(data) {
                    $('.price'+dyo_id).html(data);
                    alert('success');
                }
            });

        return false;
    });
});

Why don't you try using serialize()?

$(function() {
    $(".form").submit(function() {
        var dyo_id = $(".dyo_id").val();
        var data_ajax = $(this).serialize(); // <==

            $.ajax({
                type: 'post',
                url: 'setprice.php',
                data: data_ajax,
                cache: false,
                success: function(data) {
                    $('.price'+dyo_id).html(data);
                    alert('success');
                }
            });

        return false;
    });
});
梦魇绽荼蘼 2024-11-13 13:27:24

将 jquery 的上下文设置为 this (这是当前表单):

    var dyo_id = $(".dyo_id", this).val();
    var price = $(".setprice", this).val();

Set the context of jquery to this (which is the current form):

    var dyo_id = $(".dyo_id", this).val();
    var price = $(".setprice", this).val();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文