gpt4 book ai didi

javascript - 你如何在 php 中使用 echo 打印 html 中的文本?

转载 作者:行者123 更新时间:2023-11-30 16:59:30 27 4
gpt4 key购买 nike

我正在尝试使用 php 将一行文本打印到 html 文件中,但是当我运行 html 时,它仅打印出未定义一词。我怎样才能解决这个问题?这是代码:

HTML:

<html>
<head>
</head>
<body>
<script type="text/javascript">
var xmlhttp=new XMLHttpRequest();
var textinhtml=document.createElement("div");
var text=document.createTextNode(xmlhttp.open("GET","http://mikeyrichards.bugs3.com/test.php",true));
textinhtml.appendChild(text);
document.body.appendChild(textinhtml);
xmlhttp.send();
</script>
</body>

PHP:

<?php
echo "Hello, World"
?>

最佳答案

如评论中所述,您对 XMLHttpRequest 的使用是错误的,您应该查看它的在线示例,例如 this example from the mozilla dev network

适应您的脚本:

<script type="text/javascript">
var xmlhttp=new XMLHttpRequest();
xmlhttp.onload = function() {
var textinhtml=document.createElement("div");
var text=document.createTextNode(this.responseText);
textinhtml.appendChild(text);
document.body.appendChild(textinhtml);
}
xmlhttp.open("GET","http://mikeyrichards.bugs3.com/test.php",true)
xmlhttp.send();
</script>

此脚本不考虑请求中的错误。请阅读文档以处理它们。

关于javascript - 你如何在 php 中使用 echo 打印 html 中的文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29136535/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com