2009-07-20 2 views

답변

0

이와같이?

/* 'somepage.php' is our script source. 
    'username'  is our varible, jonathansampson is the value 
    'result'  will hold anything the script sends back 
    'text'   is the type of data we're expecting. */ 
$.get("somepage.php", {"username":"jonathansampson"}, function(result){ 

    alert(result); 

}, "text");