我有表单,在提交时(使用AJAX)返回一堆客户端详细信息。表单字段收集用户的ID,提交并返回结果。我想在文本框上使用提交按钮而不是onchange但是无法提交文本框值并返回任何内容。
这似乎应该很简单,但我又需要一些帮助。
谢谢, @rrfive
形式:
<form>
<strong>Client ID:</strong>
<input name="user" type="text" class="textBox" maxlength="10" />
<input type="submit" onclick="showUser(this.form); return false;">
</form>
JS:
<script type="text/javascript">
function showUser(str)
{
if (str=="") {
document.getElementById("txtHint").innerHTML="";
return;
}
if (window.XMLHttpRequest) {
xmlhttp=new XMLHttpRequest();
}
else {
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
document.getElementById("txtHint").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","includes/fetchUser.php?userID="+str,true);
xmlhttp.send();
}
</script>
PHP:
<?php
define('INCLUDE_CHECK',true);
include 'config.php';
$userID=$_GET["userID"];
$sql="SELECT * FROM users WHERE ID = '".$userID."'";
$result = mysql_query($sql);
$returned_rows = mysql_num_rows ($result);
if ($returned_rows == 0){
echo '-- No results found --';
}
else {
while($row = mysql_fetch_array($result)) {
echo "<div class='column'>";
echo '<label>Name:</label>' . $row['lastName'] . '
echo '</div>';
}
}
mysql_close($con);
?>
答案 0 :(得分:2)
您无需传递整个表单,只需输入“用户”。
形式:
<form name="myform">
<strong>Client ID:</strong>
<input name="user" type="text" class="textBox" maxlength="10" />
<input type="submit" onclick="showUser(document.myform.user.value); return false;">
</form>
在PHP中,请记住在数据库查询中使用输入之前需要清理输入。阅读mysql_real_escape_string或prepared statements
答案 1 :(得分:0)
<form onsubmit="return false;">