您好我试图将数据从我的文本区域发布到 DIV 标签。但它不起作用。请帮帮我。以下是我的代码
<html>
<head>
<script>
function load()
{
var a=document.getElementById('txtarea').value;
var xmlhttp;
if (window.XMLHttpRequest)
{
xmlhttp=new XMLHttpRequest();
}
else
{
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("myDiv").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("POST","one.php"+a,true);
xmlhttp.send();
}
</script>
</head>
<body onload="load()">
<textarea id='txtarea'>
default
</textarea>
<div name="myDiv" id="myDiv">
In Div Tag
</div>
</body>
</html>
一个.php
<?php
echo "Hello World";
?>
在上面的 html 文件中,我试图获取 one.php 的值以及 textarea 中的文本。但我无法获取文本区域中的值。xmlhttp.open("POST","one.php"+a,true); 在这里我正在做 +a 来附加 textarea 的值,但它没有被附加,请帮助一些解决方案