jQuery AJAX PHP ile birden dönüş değerleri

0 Cevap php

Ben bu jQuery kodu kullanıyorum:

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

How can i do something like this: $(".projDesc").html(html1); So i can split the returned results into two html elements?

echo "<p>" .$row['cust_name']. "</p>";

PHP thats kullanıyorum ve ben başka bir HTML öğesinin içine koyabilirsiniz başka bir bildirimde yankı istiyorum

Bu mantıklı mı?

0 Cevap