当我单击编辑列表类元素消失时,我的下面的代码不起作用我怎样才能让它再次出现,例如通过单击切换editLish类元素下面的任何更改将不胜感激,因为内容是动态生成的
<script type="text/javascript">
$(document).ready(function(){
alert("clicked");
$('.editList').on('click',function(){
alert('clicked');
$(this).hide();
});
});
</script>
<? $this->_renderView(false, '_submenu')?>
<?php $cand_data=$this->read_xml();
?>
<div class="module" style="width:1050px">
<div class="module_content">
<?php foreach($cand_data as $key=>$data_node){ $i=0; ?>
<table class="editList" style="">
<tr>
<th>Candidate Data</th>
</tr>
<?php foreach($data_node as $label=>$val) { if($i<16){?>
<tr>
<td><?= $label?></td>
<td><?= $val?></td>
</tr>
<?php $i++;}}?>
</table>
<?php }?>
</div>
</div>