javascript - 如何从 javascript 访问服务器端 php?

标签 javascript php server

我通过 PHP 在服务器端设置了一些变量

$LGD_AMOUNT = ""; //Amount is for the price that customer purchases
$LGD_BUYER = "";//Buyer collect name of the customer

我将它们存储在 $payReqMap

$payReqMap['LGD_AMOUNT'] = $LGD_AMOUNT;
$payReqMap['LGD_BUYER'] = $LGD_BUYER;

我想做的是在将这些发送到服务器端之前,在<script>中一部分,我想赋予他们值(value)观。有没有什么方法可以调用<script>中这些存储的变量部分?

最佳答案

这是使用纯 Javascript 使用 Ajax 的起点;

function getxmlhttp (){
    //Create a boolean variable to check for a valid Microsoft active x instance.
    var xmlhttp = false;
    //Check if we are using internet explorer.

    try {
        //If the javascript version is greater than 5.
        xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
    }

    catch (e) {
        //If not, then use the older active x object.
        try {
            //If we are using internet explorer.
            xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
        } 
        catch (E) {
            //Else we must be using a non-internet explorer browser.
            xmlhttp = false;
        }
    }

    // If not using IE, create a
    // JavaScript instance of the object.
    if (!xmlhttp && typeof XMLHttpRequest != 'undefined') {
    xmlhttp = new XMLHttpRequest();
    }
    return xmlhttp;
}//Function getxmlhttp()

//Function to process an XMLHttpRequest.
function processajax (serverPage, obj, getOrPost, str){
    //Get an XMLHttpRequest object for use.
    xmlhttp = getxmlhttp ();

    if (getOrPost == "get"){

        xmlhttp.open("GET", serverPage);

        xmlhttp.onreadystatechange = function() {

        if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
            obj.innerHTML = xmlhttp.responseText;
        }
    }

    xmlhttp.send(null);

    }

    else {
        xmlhttp.open("POST", serverPage, true);
        xmlhttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded; charset=UTF-8");
        xmlhttp.onreadystatechange = function() {
            if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
                obj.innerHTML = xmlhttp.responseText;
            }
        }
        xmlhttp.send(str);
    }
}

关于javascript - 如何从 javascript 访问服务器端 php?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31872893/

相关文章:

javascript - 如何使用 CSS3 更改具有不透明度过渡的图像以响应 onClick 事件?

javascript - 设置状态时这段代码是什么意思?

javascript - 我需要在 URL 中使用 anchor (#) 来更新我的页面

server - Flutter:无需等待服务器响应即可处置 Bloc

php - 我可以毫无问题地托管 php 5.6 项目吗?

JavaScript Ajax 函数返回错误,状态代码为 'OK'

php - 从 3 个表中选择并匹配数据

javascript - 带有 d3.json(bardata.php) 的空白网页,但适用于 d3.json(bardata.json)

php - 查找单词并更改颜色

mysql - 使用只读副本提升在 AWS RDS MySQL 数据库上创建索引