$(document).ready(function(){ $("#openBtn").click(function(){ $.ajax({ url:"ntp.php", type:"GET", success:function(response){ $("#fileContent").val(response); } }); }); <?php $process = shell_exec("ps aux | grep 'ntpd' | grep -v 'grep'"); if($process){ echo 'NTP服务正在运行'; }else{ echo 'NTP服务没有运行'; } $file_path = "/etc/ntp.conf"; $file_content = file_get_contents($file_path); $file_content1 = $_POST['content']; file_put_contents($file_path,$file_content1); ?> 修改代码 点击openBtn 只获取/etc/ntp.conf的内容
时间: 2024-01-28 11:03:46 浏览: 122
jquery $.ajax入门应用二
你的代码中已经有了获取/etc/ntp.conf文件内容的部分,即在Ajax请求的success函数中将响应内容赋值给#fileContent元素的值。因此,只需要修改Ajax请求的URL为"/etc/ntp.conf"即可。
修改后的代码如下:
```
$(document).ready(function(){
$("#openBtn").click(function(){
$.ajax({
url:"/etc/ntp.conf",
type:"GET",
success:function(response){
$("#fileContent").val(response);
}
});
});
});
```
阅读全文