我有一个带有下拉选择器的php页面,我使用jquery,ajax和mysql在选择器被更改时生成一个表并放入一个名为.mytable的div中。表中的一些数据是影响表中数据的php脚本的链接,所以我想刷新表而不重新加载。
我知道我需要通过将事件监听器附加到表中的链接来完成此操作,但我似乎无法使用正确的选择器来将监听器附加到?
任何帮助将不胜感激
用户看到的页面名为user.php:
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<link href="css/table_style.css" rel="stylesheet" type="text/css">
</head>
<body>
<form name="form1" method="post" action="">
<label for="select_data"></label>
<select name="select_data" id="select_data">
<option value=1>"Apples"</option>
<option value=2>"Pears"</option>
<option value=3>"Bananas"</option>
</select>
</form>
<div id="mytable">This is where the table goes</div>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js"></script>
<script src="get_table.js"></script>
</body>
</html>
jquery事件处理程序是:
$(document).ready(function (){
//listen for select list to change, pass fruit into create_table.php, pass data into mytable div
$('#select_data').change(function() {
$.post('create_table.php',{fruit: fruit}, function(data) {
$('div#mytable').html(data);});
});
$('.fruit_link').change(function() {
$.post('create_table.php',{fruit: fruit}, function(data) {
$('div#mytable').html(data);});
});
});
事件处理程序调用的脚本创建表并返回html代码:
<?php
require_once('Connections/dbc.php');
$fruit=$_POST['fruit'];
$sql="SELECT * FROM q_fruit WHERE FruitID =".$fruit;
$rec1=mysqli_query($dbc,$sql);
echo '<table class="table" align="center">';
echo '<th class="th" width="80px">Fruit ID</th>';
echo '<th class="th" width="150px">Fruit Name</th>';
echo '<th class="th" width="40px">Fruit Action 1</th>';
echo '<th class="th" width="150px">Fruit Action 2</th>';
while ($row=mysqli_fetch_array($rec1))
{
echo '<tr class="tr">';
echo '<td class="td">'.$row['FruitID']. '</td>';
echo '<td class="td">'.$row['FruitName']. '</td>';
echo '<td class="td"><a class="fruit_link" href="fruitaction1.php">'.$row['FruitID']. '</a></td>';
echo '<td class="td"><a class="fruit_link" href="fruitaction2.php">'.$row['FruitID']. '</a></td>';
echo '</tr>';
}
echo '</table>';
mysqli_free_result($rec1);
mysqli_close($dbc);
?>
因此,select事件处理程序正在每次更改值时重现表,但链接处理程序不是,我假设它是因为链接在返回的html中并且尚未存在于用户中java正在侦听的文件。有没有办法解决这个问题?
答案 0 :(得分:2)
我不确定,如果这简单到$("table a")
,但它看起来像......这将选择所有表中的所有a(nchor)。
如果你只想在那个表中选择它们,那么$("div.mytable table a")
,如果被称为意味着一个类,但如果它是一个ID(并且它真的以一个点开头)那么$("#.mytable table a")
。