$(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的内容
时间: 2024-02-14 17:05:03 浏览: 170
如果您想将 `$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` 元素的值中。
阅读全文