我想制作一个php ajax帖子。(没有刷新页面的帖子值)这里是我的代码。它可以返回值并显示在<div id="msg"></div>
中,但是我也想使用这个值,如何给它一个PHP变量?例如:$name= <div id="msg"></div>
我尝试使用includ('value.php')
并合并两页,放
<?php
echo $_POST["user_name"];
?>
<div id="msg"></div>
中的,它们都不是正确的方法。怎么做?如果有其他方法可以在自己的页面中发布帖子值而无需刷新页面。请教我。 thax。
的index.php
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<script language="javascript">
function saveUserInfo()
{
var msg = document.getElementById("msg");
var f = document.user_info;
var userName = f.user_name.value;
var url = "value.php";
var postStr = "user_name="+ userName;
var ajax = false;
if(window.XMLHttpRequest) {
ajax = new XMLHttpRequest();
if (ajax.overrideMimeType) {
ajax.overrideMimeType("text/xml");
}
}
else if (window.ActiveXObject) {
try {
ajax = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
ajax = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {}
}
}
if (!ajax) {
window.alert("wrong");
return false;
}
ajax.open("POST", url, true);
ajax.setRequestHeader("Content-Type","application/x-www-form-urlencoded");
ajax.send(postStr);
ajax.onreadystatechange = function() {
if (ajax.readyState == 4 && ajax.status == 200) {
msg.innerHTML = ajax.responseText;
}
}
}
</script>
</head>
<body >
<div id="msg"></div>
<form name="user_info" id="user_info" method="post">
<input name="user_name" type="hidden" value="abc" /><br />
<input type="button" value="abc" onClick="saveUserInfo()">
</form>
</body>
value.php
<?php
echo $_POST["user_name"];
?>
答案 0 :(得分:1)
$name= "<div id='msg'></div>";
尝试一下