$(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的输出了
时间: 2024-04-27 10:24:13 浏览: 138
Jquery中$(document).ready(function(){ })函数的使用详解
5星 · 资源好评率100%
根据您提供的代码,看起来是您的 `ntp.php` 没有输出信息。请确认 `ntp.php` 文件中是否有输出语句(例如 `echo` 或 `print` 语句)。如果没有,请添加输出语句以便在 AJAX 请求成功后能够输出结果。同时,您还可以检查控制台(console)中的网络请求和响应是否正常,以及响应内容是否符合预期。
阅读全文