码迷,mamicode.com
首页 > 编程语言 > 详细

javascript动态的改变checkbox的选中状态

时间:2017-07-02 10:30:14      阅读:214      评论:0      收藏:0      [点我收藏+]

标签:func   admin   click   hang   javascrip   label   span   cat   style   

 1 <td>
 2    <div class="checkbox">
 3         <label>
 4             <input type="checkbox" id="id_{$vo.id}" value="{$vo.status}" {if condition="$vo.status eq ‘1‘"}checked{/if} />锁定
 5         </label>
 6    </div>
 7 </td>
 8 <script type="text/javascript">
 9     $("#id_{$vo.id}").click(function(){
10        var status = $(‘#id_{$vo.id}‘).val();
11        $.get("{:url(‘admin/category/status_change‘)}", {id:"{$vo.id}",status:status});
12     });
13 </script>

 

javascript动态的改变checkbox的选中状态

标签:func   admin   click   hang   javascrip   label   span   cat   style   

原文地址:http://www.cnblogs.com/shione/p/7103860.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!