从 JavaScript 调用 php 函数纯 Javascript使用javascript库(jQuery等人)

2022-08-30 08:16:42

有没有办法通过JS函数运行php函数?

像这样:

<script type="text/javascript">
function test(){
document.getElementById("php_code").innerHTML="<?php 
query("hello");       ?>";    
}
</script>

<a href="#" style="display:block; color:#000033; font-family:Tahoma; font-size:12px;"     
onclick="test(); return false;"> test </a>
<span id="php_code"> </span>

我基本上想运行php函数,当我点击名为“Test”的href时,它将调用php函数。query("hello")


答案 1

从本质上讲,这就是AJAX的用途。您的页面将加载,并向元素添加一个事件。当用户触发事件时,例如通过单击某些内容,您的 Javascript 使用 XMLHttpRequest 对象向服务器发送请求。

在服务器响应(大概是输出)之后,另一个Javascript函数/事件为您提供了一个处理该输出的地方,包括简单地将其粘贴到页面中,就像任何其他HTML一样。

你可以用普通的Javascript“手动”完成它,或者你可以使用jQuery。根据项目的大小和特定情况,仅使用普通的Javascript可能会更简单。

纯 Javascript

在这个非常基本的示例中,当用户单击链接时,我们会向 发送请求。服务器将生成一些内容,在本例中为“hello world!我们将放入带有id的HTML元素中。myAjax.phpoutput

JavaScript

// handles the click event for link 1, sends the query
function getOutput() {
  getRequest(
      'myAjax.php', // URL for the PHP file
       drawOutput,  // handle successful request
       drawError    // handle error
  );
  return false;
}  
// handles drawing an error message
function drawError() {
    var container = document.getElementById('output');
    container.innerHTML = 'Bummer: there was an error!';
}
// handles the response, adds the html
function drawOutput(responseText) {
    var container = document.getElementById('output');
    container.innerHTML = responseText;
}
// helper function for cross-browser request object
function getRequest(url, success, error) {
    var req = false;
    try{
        // most browsers
        req = new XMLHttpRequest();
    } catch (e){
        // IE
        try{
            req = new ActiveXObject("Msxml2.XMLHTTP");
        } catch(e) {
            // try an older version
            try{
                req = new ActiveXObject("Microsoft.XMLHTTP");
            } catch(e) {
                return false;
            }
        }
    }
    if (!req) return false;
    if (typeof success != 'function') success = function () {};
    if (typeof error!= 'function') error = function () {};
    req.onreadystatechange = function(){
        if(req.readyState == 4) {
            return req.status === 200 ? 
                success(req.responseText) : error(req.status);
        }
    }
    req.open("GET", url, true);
    req.send(null);
    return req;
}

该网页

<a href="#" onclick="return getOutput();"> test </a>
<div id="output">waiting for action</div>

菲律宾比索

// file myAjax.php
<?php
  echo 'hello world!';
?>

试试看:http://jsfiddle.net/GRMule/m8CTk/


使用javascript库(jQuery等人)

可以说,这是很多Javascript代码。当然,您可以通过收紧块或使用更简洁的逻辑运算符来缩短它,但是那里还有很多事情要做。如果你打算在你的项目上做很多这类事情,你最好使用javascript库。

使用上面相同的HTML和PHP,这是您的整个脚本(页面上包含jQuery)。我已经稍微收紧了代码,使其与jQuery的一般风格更加一致,但你明白了:

// handles the click event, sends the query
function getOutput() {
   $.ajax({
      url:'myAjax.php',
      complete: function (response) {
          $('#output').html(response.responseText);
      },
      error: function () {
          $('#output').html('Bummer: there was an error!');
      }
  });
  return false;
}

试试看:http://jsfiddle.net/GRMule/WQXXT/

不要急于使用jQuery:添加任何库仍然会向你的项目添加数百或数千行代码,就像你编写它们一样肯定。在 jQuery 库文件中,您将找到与第一个示例中类似的代码,以及更多代码。这可能是一件好事,也可能不是。规划并考虑项目的当前规模和未来扩展的可能性以及目标环境或平台。

如果这就是你需要做的,写一次普通的javascript,你就完成了。

文档


答案 2

PHP在服务器上进行评估;javascript是在客户端/浏览器上评估的,因此你不能直接从javascript调用PHP函数。但是,您可以使用AJAX向服务器发出HTTP请求,该请求将激活PHP函数。