當我點擊到編輯列表類元素時,我的代碼不工作消失我怎樣才能使它再次出現,如點擊切換editLish類元素下面的任何更改將是多讚賞,因爲在飛行中生成內容jQuery與PHP一體化HTML不工作
<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>
你的類是'editList'在DOM,但'.editlist'您選擇電話。選擇器區分大小寫。 –