我有以下表格:
<form action="test.php" method="POST" onsubmit="loadXMLDoc(this.form); return false;">
<input class="com" type="text" name="test" />
</form>
而不是“this.form”,需要在其位置放置什么以便将用户输入的文本传递给 loadXMLDoc?
另外:然后发送此变量数据的语法是否正确?
function loadXMLDoc($testVariable)
//standard ajax code..
xmlhttp.send("test=" + $testVariable);