Bir jquery javascript fonksiyon parametreleri geçirerek?

0 Cevap php

i) ben sadece :) lol geçmek için nasıl bilmiyorum, için topic parametresini geçmek istiyorum bu jquery işlevi var.

jquery fonksiyonu:

function loadPage(url)  //the function that loads pages via AJAX
{
    url=url.replace('#page','');    //strip the #page part of the hash and leave only the page number

    $('#loading').css('visibility','visible');  //show the rotating gif animation

    $.ajax({    //create an ajax request to load_page.php
        type: "POST",
        url: "load_page.php",
        data: 'page='+url,  //with the page number as a parameter
        dataType: "php",    //expect html to be returned
        success: function(msg){

            if(parseInt(msg)!=0)    //if no errors
            {
                $('#change-container').html(msg);   //load the returned html into pageContet
                $('#loading').css('visibility','hidden');   //and hide the rotating gif
            }
        }

    });

}

ve bu url:

http://localhost/final/home.php#page2&topic=jquery

ben bu bağlantıyı, (jquery kullanarak) sayfa yükleme cezaları, ama onun konu parametre geçirerek değil tıkladığınızda!

<h3 class="timeline"><?php echo $_GET["topic"]; ?> echo</h3>

bu nedenle bu WNT yankı, bu konu param erişmek cnt çünkü! Siz ben :) demek istediğimi biliyorum)

0 Cevap