<h1>编辑NTP配置文件</h1> <hr> <button id = "openBtn">打开文件</button> <button id = "saveBtn">保存</button> <br><br> <textarea id="fileContent" cols="80" rows="30"></textarea> <script> $("#openBtn").click(function(){ $.ajax({ url:"ntp1.php", type:"GET", success:function(response){ var fc = response; $("#fileContent").val(fc); } }); }); $("#saveBtn").click(function(){ var fileContent = $("#fileContent").val(); $.ajax({ url:"ntp1.php", type:"POST", data:{content:fileContent}, success:function(response){ alert("File saved successfully!"); } }); }); </script> 运行此代码时 会将ntp1.php file_get_contents得到的文件内容直接剪切到网页上 且通过ajax只能得到ntp1.php echo $file_content输出的值 帮为修改ia为将ntp1.php获得的文本内容输入到文本框中
时间: 2024-02-10 13:05:57 浏览: 61
您需要将代码中的第一个按钮的点击事件绑定修改为将ntp1.php获得的文本内容输入到文本框中,可以参考以下代码:
```
$("#openBtn").click(function(){
$.ajax({
url:"ntp1.php",
type:"GET",
success:function(response){
var fc = response;
$("#fileContent").val(fc);
},
error:function(){
alert("Failed to load file");
}
});
});
```
这样,当您点击“打开文件”按钮时,会将ntp1.php获得的文本内容输入到文本框中。
相关问题
<h1>编辑NTP配置文件</h1> <hr> <button id = "openBtn">打开文件</button> <button id = "saveBtn">保存</button> <br><br> <textarea id="fileContent" cols="80" rows="30"></textarea> <script> $("#openBtn").click(function(){ $.ajax({ url:"ntp1.php", type:"GET", success:function(response){ var fc = response; $("#fileContent").val(fc); } }); }); $("#saveBtn").click(function(){ var fileContent = $("#fileContent").val(); $.ajax({ url:"ntp1.php", type:"POST", data:{content:fileContent}, success:function(response){ alert("File saved successfully!"); } }); }); </script> 优化代码
对于这段代码,可以将 HTML 和 JavaScript 部分分离,提高代码可读性和维护性。同时,也可以将 Ajax 请求的 url 和 type 参数提取出来,方便维护。
HTML 部分:
```
<h1>编辑NTP配置文件</h1>
<hr>
<button id="openBtn">打开文件</button>
<button id="saveBtn">保存</button>
<br><br>
<textarea id="fileContent" cols="80" rows="30"></textarea>
```
JavaScript 部分:
```
var url = "ntp1.php";
var type = "GET";
function getFileContent() {
$.ajax({
url: url,
type: type,
success: function(response) {
var fc = response;
$("#fileContent").val(fc);
}
});
}
function saveFile() {
var fileContent = $("#fileContent").val();
$.ajax({
url: url,
type: "POST",
data: { content: fileContent },
success: function(response) {
alert("File saved successfully!");
}
});
}
$(document).ready(function() {
$("#openBtn").click(function() {
getFileContent();
});
$("#saveBtn").click(function() {
saveFile();
});
});
```
优化后的代码将 Ajax 请求的 url 和 type 参数提取出来,方便维护。同时,使用 `$(document).ready()` 函数来确保页面加载完成后再执行 JavaScript 代码,避免出现未定义的错误。
<h1>编辑NTP配置文件</h1> <hr> <button id="openBtn">打开文件</button> <button id = "saveBtn">保存</button> <br><br> <textarea id="fileContent" cols="80" rows="30"></textarea> <script> $(document).ready(function(){ $("#openBtn").click(function(){ $.ajax({ url:"ntp1.php", type:"GET", success:function(response){ $("#fileContent").val(response); } }); }); $("#saveBtn").click(function(){ var fileContent = $("#fileContent").val(); $.ajax({ url:"ntp1.php", type:"POST", data:{content:fileContent}, success:function(response){ alert("File saved successfully!"); } }); }); }); </script> 优化代码
可以将 JavaScript 的代码提取出来,放在外部的 js 文件中,同时将 jQuery 的 $ 符号替换成 jQuery,以避免和其他 JavaScript 库的冲突。代码如下:
HTML 文件:
```
<h1>编辑NTP配置文件</h1>
<hr>
<button id="openBtn">打开文件</button>
<button id="saveBtn">保存</button>
<br><br>
<textarea id="fileContent" cols="80" rows="30"></textarea>
<script src="js/main.js"></script>
```
JavaScript 文件(js/main.js):
```
jQuery(document).ready(function($) {
$("#openBtn").click(function() {
$.ajax({
url: "ntp1.php",
type: "GET",
success: function(response) {
$("#fileContent").val(response);
}
});
});
$("#saveBtn").click(function() {
var fileContent = $("#fileContent").val();
$.ajax({
url: "ntp1.php",
type: "POST",
data: {
content: fileContent
},
success: function(response) {
alert("File saved successfully!");
}
});
});
});
```
此外,为了提高代码的可读性和可维护性,可以将 PHP 文件中的 GET 和 POST 请求分别处理,分别写成不同的函数。
阅读全文