我如何使用JQuery $ .get()方法

How to send an HTTP GET request to a page and get a result back:
This is a piece of code using jquery pagination..
I think there is a mistake in my code is to call $.get() on a jquery method.

if(isset($_GET['pages'])) {

    $pages = $_GET['pages'];
    $i = ($pages - 1) * $num_pages  + 1;
    .....

    <?php echo '<a href="?pages='.$i.'">'.$i.'</a>' ?>

this Jquery code:

//JQuery

(function($) {
    $(document).ready(function(e) {
        var main = "data_students.php";

        $("#data-students").load(main);

        // when the button page is pressed 
        $('.pages').live("click", function(event){
            kd_page = this.id;

            $.get(main, {pages: kd_page} ,function(data) {
                $("#data-students").html(data).show();
            });
        });
    });
}) (jQuery);
$.get("page.php?vars=values&othervar=othervalue",function(data) {
            $("#data-students").html(data).show();
        });

You can try this

//send as much paramerters as you wish in $.get(url,data,callback);

$.get("page.php",{vars:values,othervar:othervalue},function(data) {
        $("#data-students").html(data).show();
    });