0

通常我们使用

window.location.href="/index.php?querystring";

在 JavaScript 中。有没有办法通过 post 方法发送查询字符串,而文档中没有任何形式?

4

1 回答 1

0

您需要使用它XMLHttpRequest来执行此操作。

演示:http: //jsfiddle.net/ThinkingStiff/bCnuE/4/

脚本:

function post( url, data, success, error ) {

    var ajax = new window.XMLHttpRequest();

    ajax.onreadystatechange = function () {
        if ( ajax.readyState == 4 ) { //response ready

            if ( ajax.status == 200 ) { //success
                if ( success ) success( ajax.responseText, ajax.statusText );
            } else {
                if ( error ) error( ajax.statusText );
            };
        };
    };

    ajax.open( 'POST', url );
    ajax.send( data );

};

post( '/index.php', 'querystring', 
    function ( response, status ) {
        //success'
    },
    function ( error ) {
        //error'
    } 
);
于 2012-06-28T06:51:45.873 回答