Jquery选择最近的复选框收件箱不起作用

我有一个包含多个级别复选框的treelist,我试图让父复选框在单击任何子复选框时显示为’checked’.由于某些原因,这不起作用,它正在杀了我.

JAVASCRIPT

$(function() {
        $("input.boundChild[type=checkBox]").click(function() {              
            $(this).closest("input.boundParent").prop("checked","checked");
        });
 });

HTML

<ul>
   <li class="collapsed expanded">
       <input id="0" class="boundParent" type="checkBox" >
        Australia
             <ul style="display: block;">
               <li>
                  <input id="0/" class="boundChild" type="checkBox" checked="">
                  <input type="hidden" value="Intel Australia PTY Ltd.">
               </li>
             </ul>
   </li>
</ul>

解决方法

输入元素不能有子项,在标记中输入.boundParent不是input.boundChild的父项之一.它是ul元素的兄弟.你可以使用prev方法.

$(function() {
    $("input.boundChild[type=checkBox]").click(function() {              
        $(this).closest('ul').prev().prop("checked",this.checked);
        // $('input.boundParent').prop("checked",this.checked);
    });
});

http://jsfiddle.net/dhVvN/

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: &lt;span id=&quot...
jQuery 添加水印 &lt;script src=&quot;../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...