$(document).ready(function(){ $("#startBtn").click(function(){ $.ajax({ url:'ntp.php', type:'post', data:{action:"start"}, success:function(result){ $("#result").html(result); } }); }); $("#stopBtn").click(function(){ $.ajax({ url:'ntp.php', type:'post', data:{action:"stop"}, success:function(result){ $("#result").html(result); } }); }); $("#restartBtn").click(function(){ $.ajax({ url:'ntp.php', type:'post', data:{action:"restart"}, success:function(result){ $("#result").html(result); } }); }); }); </script> 一次点击三个按钮 会将echo的内容全部打印在页面上
时间: 2024-02-10 16:34:03 浏览: 71
这段代码是一个 JavaScript/jQuery 代码片段,主要用于通过 AJAX 请求调用后端 PHP 脚本,并将脚本的响应结果展示在 HTML 页面上。
具体来说,这段代码在页面加载完成后,会为三个按钮(id 分别为 startBtn、stopBtn 和 restartBtn)绑定 click 事件处理函数。当用户点击这些按钮时,会向后端的 ntp.php 脚本发送 POST 请求,同时携带一个 action 参数,其值分别为 start、stop 和 restart。后端脚本根据这个参数的值执行相应的操作,并将结果通过 echo 函数输出。
在这个代码中,每个 AJAX 请求的成功回调函数会将后端脚本的响应结果(即输出的内容)插入到页面中 id 为 result 的 HTML 元素中。
因此,如果用户依次点击三个按钮,三次 AJAX 请求的响应结果都会被插入到页面中 id 为 result 的元素中,从而导致将 echo 的内容全部打印在页面上。
相关问题
$(document).ready(function(){ $("#startBtn").click(function(){ $.ajax({ url:'ntp.php', type:'post', data:{action:"start"}, success:function(result){ $("#startBtn").parent().find(".result").html(result); } }); }); $("#stopBtn").click(function(){ $.ajax({ url:'ntp.php', type:'post', data:{action:"stop"}, success:function(result){ $("#stopBtn").parent().find(".result").html(result); } }); }); $("#restartBtn").click(function(){ $.ajax({ url:'ntp.php', type:'post', data:{action:"restart"}, success:function(result){ $("#restartBtn").parent().find(".result").html(result); } }); }); }); 点击按钮 没有echo的输出了
根据您提供的代码,看起来是您的 `ntp.php` 没有输出信息。请确认 `ntp.php` 文件中是否有输出语句(例如 `echo` 或 `print` 语句)。如果没有,请添加输出语句以便在 AJAX 请求成功后能够输出结果。同时,您还可以检查控制台(console)中的网络请求和响应是否正常,以及响应内容是否符合预期。
$(document).ready(function(){ $("#openBtn").click(function(){ $.ajax({ url:"ntp1.php", type:"GET", success:function(response){ $("#fileContent").val(response); } }); }); 不使用response 获取php $file_path = "/etc/ntp.conf"; $file_content = file_get_contents($file_path); $file_content的内容
如果您想将 `$file_content` 的内容返回给 AJAX 请求,您可以使用 `echo` 将其作为 HTTP 响应的一部分输出,然后在 AJAX 的 `success` 回调函数中获取它。例如,您可以使用以下 PHP 代码:
```
$file_path = "/etc/ntp.conf";
$file_content = file_get_contents($file_path);
echo $file_content;
```
这将读取 `$file_path` 文件的内容并将其输出到 HTTP 响应中。然后,您可以在 AJAX 的 `success` 回调函数中获取它,如下所示:
```
$(document).ready(function(){
$("#openBtn").click(function(){
$.ajax({
url:"ntp1.php",
type:"GET",
success:function(response){
$("#fileContent").val(response);
}
});
});
});
```
当用户单击 `openBtn` 按钮时,将会发送一个 AJAX 请求到 `ntp1.php` 文件。如果请求成功,`success` 回调函数将会被触发,并且 `response` 参数将会包含 PHP 输出的内容。在这个例子中,`response` 将会包含 `$file_content` 的内容,它会设置到 `fileContent` 元素的值中。
阅读全文