Php bazik metinsel çıktı Ayrıştırma

1 Cevap php
var req = function () {
                $.ajax({
                    url: "out.php",
                    cache: false,
                    success: function(html){
                        $("#stuff").empty().append(html);
                    },
                    complete: function(){
                        req();
                    }

                    });
            };
            req();

Yukarıdaki bu çimbalo aşağıdaki biçimde çıkışı alır: 0,0

Bunu nasıl ayrıştırmak ve css seçici üst bir rakam vermiş ve diğer sol?

1 Cevap

Well, if I understood your php output is somwething like x,y and you need x to be the css attribute top and y the css attribute left of an element. In my example I will call the element which will hold these attributes with the id elem.

Yani burada gider:

var css_attr = req.split(",");
$('#elem').css('top', css_attr[0]).css('left', css_attr[1]);

Sadece succes AJAX çağrısı sadece var css_attr var css_attr = html.split(","); olarak değiştirin ve kalan aynı kalır ve bunu yapmak istiyorum.

Hepsi olmalıdır. split() function php adlı hemen hemen eşittir explode().

Tadını çıkarın!