我是Ajax的新手,一般都是编程,我目前正在学习。
我的目标
我目前正在尝试创建一个链式下拉列表,第一个下拉列表从我的数据库中填充,第二个下拉列表根据用户在第一个下拉列表中的选择填充自己。
我的代码(表单页)
<?PHP
session_start();
if(@$_SESSION['Auth']!=="Yes") {
echo"You are not authorised to view this page.Please click <a href='Login.php'>here</a> to login.";
exit();
}
?>
<?PHP
//Processing Code goes here
?>
<!DOCTYPE html>
<html>
<head>
<script>
function getcategory() {
var xmlhttp;
if(window.XMLHttpRequest) {
//code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp= new XMLHttpRequest();
} else {
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function() {
if(xmlhttp.readyState==4 && xmlhttp.status==200) {
alert("This is an alert 1");
document.getElementById("category").innerHTML=xmlhttp.responseText;
}
}
alert("This is an alert 2");
xmlhttp.open("GET","AddItemCat.php","true");
alert("This is an alert 3");
xmlhttp.send();
alert("This is an alert 4");
}
function getsubcategory(cat) {
var xmlhttp;
if(window.XMLHttpRequest) {
//code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp= new XMLHttpRequest();
} else {
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function() {
if(xmlhttp.readyState==4 && xmlhttp.status==200) {
document.getElementById("subcat").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","AddItemSubCat.php?cat="+cat,"true");
xmlhttp.send();
}
</script>
</head>
<body>
<form action="<?PHP echo $_SERVER['PHP_SELF'] ?>" name="additem" enctype="multipart/form-data" method="POST">
<table>
<tr>
<td>Select Category: </td>
<td><script>alert("This is an alert 5");</script>
<select id="category" onclick="getcategory()">
<script>alert("This is an alert 6");</script>
<option id="cat"value=""></option>
<script>alert("This is an alert 7");</script>
</select>
</td>
</tr>
<tr>
<td>Select SubCategory</td>
<td>
<select id="subcat" onclick="getsubcategory(cat)">
<option value=""></option>
</select>
</td>
</tr>
</table>
</form>
</body>
</html>
我的代码(AddItemCat.php)
<?PHP
session_start();
if(@$_SESSION['Auth']!=="Yes") {
echo"You are not authorised to view this page.Please click <a href='Login.php'>here</a> to login.";
exit();
}
?>
<?PHP
if(@$_SESSION['Auth']=="Yes" && @$_SESSION['Type']=="Admin") {
include("cxn.inc");
$userid=$_SESSION['UserId']
$branchid=0;
$getcat="SELECT * FROM `Categories` WHERE `Business`=$userid AND Branch=$branchid";
$runcat=mysqli_query($cxn,$getcat) or die (mysqli_error($cxn));
while($row=mysqli_fetch_assoc($runcat)) {
$cat=$row['Category'];
echo"<option value=$cat>$cat</option>";
}
}
?>
我的代码(AddItemSubCat.php)
<?PHP
session_start();
if(@$_SESSION['Auth']!=="Yes") {
echo"You are not authorised to view this page.Please click <a href='Login.php'>here</a> to login.";
exit();
}
?>
<?PHP
if(@$_SESSION['Auth']=="Yes" && @$_SESSION['Type']=="Admin") {
include("cxn.inc");
//Gets the category parameter passed from the URL
$cat=$_GET['cat'];
$userid=$_SESSION['UserId']
$branchid=0;
$getsub="SELECT * FROM `SubCategories` WHERE `Business`=$userid AND Branch=$branchid && Category==$cat";
$runsub=mysqli_query($cxn,$getsub) or die (mysqli_error($cxn));
while($row=mysqli_fetch_assoc($runsub)) {
$sub=$row['Category'];
echo"<option value=$sub>$sub</option>";
}
}
?>
错误(或者说缺少错误)
我的Category和SubCategory下拉列表都是空的,没有任何东西出现,我无法看到它究竟是什么WTF我做错了。任何人都可以指出我的错误并告诉我如何纠正它们并改进?我一直在看屏幕2个小时没有,我也没有找到我的错误,因为我根本没有得到任何东西(没有错误消息),只有一个表格,其中2个下拉框是完全空的
谢谢!
PS:我的最终目标是创建一个类似于在线商店中使用的表单,用户可以上传项目以及附带的图片。我还没有添加表格的其余部分,因为我的保管箱没有工作,所以没有任何意义。
编辑:在之前缺少的表单页面中添加了一个表。没有对结果进行可见的更改,但仍然无法使代码正常工作。
编辑2:为代码添加了各种警报。只有警报5,6和7正在工作并在我加载页面时弹出.javascript中的警报不起作用,所以问题显然在于javascript函数虽然我仍然无法看到错误是什么。答案 0 :(得分:0)
我建议2次更改 -
1.在页面加载时加载您的类别选择选项,而不是使用onclick
- 将onload="getcategory()"
添加到您的正文标记中。
2.加载您的SubCategory选择更改类别的选项
- 将onchange="getsubcategory(this)"
添加到<select id="category">
,然后从onclick="getsubcategory(cat)"
中删除<select id="subcat" >
- 然后在var catval = cat.options[cat.selectedIndex].value;
中使用getsubcategory()
获取所选值。
现在看起来像 -
...
<!DOCTYPE html>
<html>
<head>
<script>
function getcategory() {
var xmlhttp;
if(window.XMLHttpRequest) {
//code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp= new XMLHttpRequest();
} else {
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function() {
if(xmlhttp.readyState==4 && xmlhttp.status==200) {
document.getElementById("category").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","AddItemCat.php","true");
xmlhttp.send();
}
function getsubcategory(cat) {
var xmlhttp;
var catval = cat.options[cat.selectedIndex].value;
if(window.XMLHttpRequest) {
//code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp= new XMLHttpRequest();
} else {
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.onreadystatechange=function() {
if(xmlhttp.readyState==4 && xmlhttp.status==200) {
document.getElementById("subcat").innerHTML=xmlhttp.responseText;
}
}
xmlhttp.open("GET","AddItemSubCat.php?cat="+catval,"true");
xmlhttp.send();
}
</script>
</head>
<body onload="getcategory()">
<form action="<?PHP echo $_SERVER['PHP_SELF'] ?>" name="additem" enctype="multipart/form-data" method="POST">
<table>
<tr>
<td>Select Category: </td>
<select id="category" onchange="getsubcategory(this)">
<option value=""></option>
</select>
</td>
</tr>
<tr>
<td>Select SubCategory</td>
<td>
<select id="subcat">
<option value=""></option>
</select>
</td>
</tr>
</table>
</form>
</body>
</html>