我有一个文本表单,其中包含一个文本字段以及我想要发送到另一个页面的指定ID号。那可能吗?
<form name="cForm" id="cForm">
Comment: <input type="textBox" name="cText" id="cText" />
<input type="button" name="submitCreate" id="submitCreate" value="Create" onclick="showCreate('.$row['ID'].')" /><br>
</form>
<script>
function showCreate(str) {
if (str=="") {
document.getElementById("showCreate").innerHTML="";
return;
}
if (window.XMLHttpRequest) {
// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
} else { // code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function() {
if (xmlhttp.readyState==4 && xmlhttp.status==200) {
document.getElementById("showCreate").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("Post","showCreate.php?q="+str,true);
xmlhttp.send();
}
</script>
我想在单独的变量中获取文本字段和ID的值
$comment = $_REQUEST["q"];
$ID = $_REQUEST["p"];
答案 0 :(得分:1)
不确定我是否理解你,但试试这个:
<form name="cForm" id="cForm">
Comment: <input type="textBox" name="cText" id="cText" />
<input type="button" name="submitCreate" id="submitCreate" value="Create" onclick="showCreate('.$row['ID'].')" /><br>
</form>
<script>
function showCreate(str) {
if (str=="") {
$("#showCreate").html("");
return;
}
$.ajax({
type: "POST",
url: "showCreate.php",
data: "q="+str+"&p="+$("#cText").val()
}).done(function( result ) {
$("#showCreate").html(result);
});
}
</script>
所以你可以像你想要的那样在PHP上使用vars
$comment = $_REQUEST["q"];
$ID = $_REQUEST["p"];