我有动态的复选框行,我想做的是获取 Parent Tr Custom 属性值但无法这样做,我正在做这样的事情
jQuery('[id^="status-"]').click(function(event) {
var parentTrID = $(this).parent().find('data-tt-id');
alert(parentTrID);
});
这是我的 HTML/Php 部分
<?php
$count = 0;
foreach ($this->Allocations as $Allocation)
{
$count++;
?>
<tr id="<?php echo $count; ?>" data-tt-id="<?php echo $Allocation->getId(); ?>" <?php echo (is_object($Allocation->getParent()) ? 'data-tt-parent-id="' . $Allocation->getParent()->getId() . '"' : ''); ?>>
<td><?php echo @$Allocation->getName(); ?></td>
<td id="chk"><input type="checkbox" name="status[]" value="<?php echo $Allocation->getId(); ?>"></td>
<td><input type="hidden" id="code-<?php echo $count; ?>" name="code-<?php echo @$Allocation->getCode(); ?>"></td>
</tr>
<?php }; ?>