0

こんにちは、アラートではなく div に応答を出力するように、以下のスクリプトを少し変更したいと思います。太字のセクションを参照してください。どんな助けでも大歓迎です!

function processResponse() {
    if (gateway.readyState == 4 && gateway.status == 200) {
        alert("Done loading!\n\nThe response from the PHP script was: "+gateway.responseText);
    }
}
4

2 に答える 2

1

div に id がある場合は、次のようにしてみてください。

document.getElementById("divId").innerHTML = gateway.responseText;
于 2012-10-03T13:44:36.137 に答える
0
function processResponse() { 
    if (gateway.readyState == 4 && gateway.status == 200) {
        document.getElementById("yourDiv").innerHTML = "php script was : " + gateway.responseText;
    } 
}

またはjqueryを使用している場合

function processResponse() { 
    if (gateway.readyState == 4 && gateway.status == 200) {
        $("#youdivid").html("php script was : " + gateway.responseText);
    } 
}
于 2012-10-03T13:47:13.120 に答える