0

当我单击编辑列表类元素消失时,我的下面的代码不起作用我怎样才能让它再次出现,例如通过单击切换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>
4

3 回答 3

1

检查您的选择器拼写 - 您已将点击处理程序绑定到editlist并且您的表类是editList.

于 2013-02-07T17:33:25.437 回答
1

css 类名区分大小写。$('.editlist')你需要换成$('.editList')大写字母L

于 2013-02-07T17:33:53.377 回答
0

您的表类是“editList”,但您的 jquery 选择器是“.editlist”(注意 L 上的不同大小写)。Css 名称区分大小写。

使用$('.editList').click(...将起作用

于 2013-02-07T17:35:23.103 回答