我是Jquery的新手,需要正确的策略来执行动态表单。
我想创建一个动态表单。我从数据库中检索值,将它们显示为行和&然后,对于每个值,用户可以根据需要添加任意数量的行。下面的代码显示了一个为每个值创建一个表的循环,带有“customFields”ID,后面带有“$ i”变量以使其唯一。
// query code
$i = 1;
while ($row = mysql_fetch_array($sqlQ))
{
$var1 = $row['sid'];
$var2 = $total_rows;
?>
<table id="customFields<?php echo $i; ?>" class="box-table-a" align="left">
<thead>
<tr>
<th colspan="5" scope="col"><?php echo $row['VS_NAME']; ?></th>
<th scope="col" align="Right"><a href="javascript:void(0)" id="addCF<?php echo $i++; ?>" >Add Row</a></th>
</tr>
</thead>
</table>
}
现在对于这段代码,我编写了以下javascript追加代码。
<script>
<?php for ($i = 1; $i <=5; $i++) { ?>
$("#addCF"+<?php echo $i; ?>).click(function(){
$("#customFields<?php echo $i;?>").append('<tr ><td width="13%"><input type="text" name="godkant[]" class="fieldWidth" /></td><td width="11%" style="background:#b5dbe6" ><input type="text" name="foreRengoring[]" class="fieldWidth" /></td><td width="12%" style="background:#e6b8b8" ><input type="text" name="efterRengoring[]" class="fieldWidth" /></td><td width="12%" style="background:#c0d498" ><input type="text" name="borvarden[]" class="fieldWidth" /></td><td width="12%" style="background:#ffff66" ><input type="text" name="injust[]" class="fieldWidth" /></td><td width="40%" ><input type="text" name="noteringar[]" class="fieldWidthNote" /></td></tr>'); });
<?php } ?>
</script>
以上代码完美无缺。但我不知道我的php while循环将返回的值的数量。所以我需要将两个值传递给此javascript点击事件。一个用于循环,第二个用于在我们添加行时显示。
问题; 1.实现这种功能的最佳策略是什么? 2.我可以在我自己的函数中使用Jquery事件处理程序(如果我正确调用它 - $(#id).append ...)可以在Onclick事件上调用吗?
我希望我能正确解释这个问题。 这个问题被多次询问,但我是Jquery的新手,这就是为什么我无法将答案映射到我的解决方案。
需要帮助。
由于
答案 0 :(得分:2)
在这种情况下,你的jQuery中不需要PHP。你可以像这样重构它:
$('.box-table-a a').click(function (evt) {
evt.preventDefault();
$(this).parents('table').append(rowHtml);
return false;
});
其中rowHtml
是您要添加的HTML。如果您计划为每个表格设置多个链接,则应为添加链接指定一个类别(例如add-link
),然后您的事件监听器就会变为$('.add-link').click
。您还应该使用<a href="javascript:void(0)"
替换HTML中的<a href="#"
。
小提琴:http://jsfiddle.net/verashn/7HCZu/
修改强>
要将其他数据传递到您的行,请将数据放在table
元素中,如下所示:
<table ... data-rowid="<?php echo $var1; ?>" data-total="<?php echo $var2; ?>">
然后用jQuery阅读:
$('.box-table-a a').click(function (evt) {
...
var rowId = $(this).parents('table').data('rowid');
var total = $(this).parents('table').data('total');
});
演示(这会将ID&amp; total放入每行的第1和第2个输入字段中):http://jsfiddle.net/verashn/7HCZu/5/