ajax jquery ile arka plan rengini değiştirme?

0 Cevap php

senaryo: Benim kullanıcıların farklı arka plan renkleri ve yazı tipleri ile onların kendi profil sayfaları var, ben ajax kullanarak belirli bir kullanıcı xmaple için renkleri almak istiyorum. yani

$.ajax({ 

           type: "POST", 
           data: "id", 
           url: "ajax/css.php", 
           success: function (bg,font) { 

            $('#bg').css('background-color', 'bg');
             $('#font').css('font-color', 'font');

           } 

ajax / css.php sayfası

<?php

//retrieve the background and font data from database for the id(userID).

// this is the bit im stuck here, shall i echo the reuslts or return them :~

?>

bir örnek :)) harika teşekkürler çocuklar olurdu

0 Cevap