仅序列化选中的复选框并通过 $.get 发送它们

发布于 2024-12-11 18:25:13 字数 705 浏览 0 评论 0原文

已经这样做有一段时间了,似乎无法让它工作,我要么需要通过 POST 或 GET 来完成,但是我一直陷入困境,我当前的代码是

<script>

        $('#RequestSupport2').submit(function() {
            var values = {};
            $("#RequestSupport2 :checked").each(function(key, value) {
             // alert("key"+key+"value = " + $(this).val());
                values[this.name] = $(this).val();

            });
            var values2 = $(values).serialize();

            $.post("URL", { name: values2}, function(data){
                $("#result").html(data);
            });
            return false;

        });
</script>

因为 GET 不起作用是否太多复选框和字符串变得太长,任何人都可以帮助使其与 GET 或 POST 一起使用吗?并仅通过已检查的元素进行发布,

提前致谢!

have been at this for a while now, and can't seem to get it to work, I either need to do it via POST or GET, however I keep getting stuck, current code I have is

<script>

        $('#RequestSupport2').submit(function() {
            var values = {};
            $("#RequestSupport2 :checked").each(function(key, value) {
             // alert("key"+key+"value = " + $(this).val());
                values[this.name] = $(this).val();

            });
            var values2 = $(values).serialize();

            $.post("URL", { name: values2}, function(data){
                $("#result").html(data);
            });
            return false;

        });
</script>

As GET didn't work as there were too many check boxes and string just became too long, anyone could help getting this to work with either GET or POST? and post through only checked elements,

Thanks in advance!

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

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

发布评论

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

评论(1

飘落散花 2024-12-18 18:25:13

尝试删除空格 #RequestSupport2:checked

$("#RequestSupport2:checked").each(function(key, value) {

Try removing the space #RequestSupport2 and :checked

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