我在 HTML、CSS、JavaScript 和 PHP 方面有相当深厚的背景。不幸的是,当谈到 jQuery 和 Ajax 时,至少可以说我有点不够资格。我在工作中做网页设计,但主要处理酒吧、夜总会(喜欢花哨而不是性能的人)。我最近找到了一份需要以上所有内容的工作,而且它有一个使用 PHP 的 mySQL 后端。
我有一个主页。在此页面上,它包含一个表格。该表格是可滚动的,这意味着页面本身只有大约 750 像素(正常屏幕大小),但表格可以根据需要滚动(从数据库中提取的信息)。最右边的一列包含2个按钮,1个是查看该列的详细信息。这个按钮重定向到另一个页面(输入类型=提交,PHP 处理重定向),很简单。然而,另一个按钮(输入类型=按钮)在单击时(假设这与项目 A 相关联)假设在同一页面上生成另一个表,该表处理基于项目 A 的子项目。同样起初这不是问题。简单的提交按钮和 PHP 检查提交按钮是否被按下。现在的问题是数据库中有太多的项目,当用户单击按钮查看子项目时,该页面会进行快速刷新,这会使第一个表(可能有 100 个项目长)刷新到顶部。我的主要目标是让 jQuery 或 Ajax 调用一个外部 PHP 脚本,该脚本将回显必要的代码,以便在当前 html 页面中“构建”另一个表,而不刷新顶部表。
这是我已经/尝试过的。
<script>
function callAjax() {
var xmlhttp;
if (window.XMLHttpRequest)
{// code for IE7+, Firefox, Chrome, Opera, Safari
xmlhttp=new XMLHttpRequest();
}
else
{// code for IE6, IE5
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
}
xmlhttp.open("POST","test.php",true);
xmlhttp.send();
document.getElementById("divClass3").innerHTML=xmlhttp.responseText;
}
</script>
另外,我在 html 页面中的代码如下(请告知我曾经在我的 html 文件中有“test.php”代码。这工作正常,目前我还没有根据我的结果进行更改尝试):
<div id="divClass3">
<?php if (sizeof($rows2) > 0) echo'
<table class="tableClass3">
<colgroup>
<col class="fifteenper" />
<col class="fifteenper" />
<col class="fifteenper" />
<col class="fifteenper" />
<col class="fifteenper" />
<col class="fifteenper" />
<col class="tenper" />
</colgroup>
<tbody>
<tr class="tableRowClass3">
<th class="tableHeadingClass1">
heading1
</th>
<th class="tableHeadingClass1">
heading2
</th>
<th class="tableHeadingClass1">
heading3
</th>
<th class="tableHeadingClass1">
heading4
</th>
<th class="tableHeadingClass1">
heading5
</th>
<th class="tableHeadingClass1">
heading6
</th>
<th class="tableHeadingClass1">
heading7
</th>
</tr>
</tbody>
</table>
<div class="divClass2">
<table class="tableClass2">
<colgroup>
<col class="fifteenper" />
<col class="fifteenper" />
<col class="fifteenper" />
<col class="fifteenper" />
<col class="fifteenper" />
<col class="fifteenper" />
<col class="tenper" />
</colgroup>
<tbody class="tableBodyClass2">
'?>
<?php if (sizeof($rows2) > 0) {foreach($rows2 as $row2): ?>
<tr class="tableRowClass2">
<td class="tableDataClass2">
<form method="post"> <?php echo $row2['echo1']; ?> </form>
</td>
<td class="tableDataClass2">
<form method="post"> <?php echo $row2['echo2']; ?> </form>
</td>
<td class="tableDataClass2">
<form method="post"> <?php echo $row2['echo3']; ?> </form>
</td>
<td class="tableDataClass2">
<form method="post"> <?php echo $row2['echo4']; ?> </form>
</td>
<td class="tableDataClass2">
<form method="post"> <?php echo htmlentities($row2['echo5'], ENT_QUOTES, 'UTF-8'); ?> </form>
</td>
<td class="tableDataClass2">
<form method="post"> <?php echo htmlentities($row2['echo6'], ENT_QUOTES, 'UTF-8'); ?> </form>
</td>
<td class="tableDataClass2">
<form method="post">
<input name="View" type="submit" value="View" />
<input name="WorkID" type="hidden" value="<?php echo $row2['WorkID']; ?>" /> </form>
</td>
</tr>
<?php endforeach;} ?>
<?php if (sizeof($rows2) > 0) echo'
</tbody>
</table>
</div>
'?>
</div>
最后是 test.php
<?php
$query2 = "
SELECT
SOMETHING
FROM
TABLE1
INNER JOIN
TABLE2
ON
CAT1=CAT2
AND
CAT3 = :CAT4
";
$query_params2 = array(
':CAT4' => $_POST['BUTTON']
);
try
{
$stmt2 = $db->prepare($query2);
$stmt2->execute($query_params2);
}
catch(PDOException $ex)
{
die("Failed to run query: " . $ex->getMessage());
}
$rows2 = $stmt2->fetchAll();
?>
我提前感谢提供的任何帮助。我只是发布这个,以便其他人也可以从中受益。我被困了几天没有任何用处。我见过类似的问题,但没有任何匹配的,所以我想我会试一试。我非常感谢你!
干杯