php için AJAX ile sınıf adı ile her elemanını gönderme

0 Cevap php

Ben veri almak ve bir php sayfası göndermek için aşağıdaki kodu kullanıyorum merhaba i istiyorum ama onun sadece ilk gönderme gibi çalışır. "Düzen" de, yani karşısına çıkıyor. i her., bu çeşit olurdu, class = "düzen" ile her eleman göndermek gerekiyor (?)

$('#submit').click(function(){
                    var order=$('.order').html();
                    var dataString = 'order='+ order;

                    $.ajax
                        ({
                        type: "POST",
                        url: "order.php",
                        data: dataString,
                        cache: false,
                        success: function(html)
                            {
                                $("#response").html(html);
                            }
                        });
            });

Yerine bu yaptım ve şimdi tuhaf, çalışıyor!

$('#submit').live('click',function(){ 
                var order=$('.order').text();
                var dataString = 'order='+ order;

                $.ajax
                    ({
                    type: "POST",
                    url: "order.php",
                    data: dataString,
                    cache: false,
                    success: function(html)
                        {
                            $("#response").html(html);
                        }
                    });
        });

0 Cevap