jQuery技术:使用JQuery的可折叠列表

 $(document).ready(function(){ var xml = "                        "; var data = $.parseXML(xml); console.log(data); $(data).find('method').each(function(){ var name = $(this).attr('name'); $('
').html(''+name+'').appendTo('#page-wrap'); $(this).children('childcall').each(function(){ name = $(this).attr('name'); $('
').html(''+name+'').appendTo('#page-wrap'); }); }); });

上面的代码遍历xml并打印项目为 – ABCBDCD E.我想把它变成一个可折叠的列表,就像在给定的链接中一样: http : //www.sendesignz.com/index.php/jquery/77-how-to -create-扩大和崩溃,列表项,使用,jquery的

有关如何使其可折叠的任何提示?

编辑:谢谢你的帮助。 对不起,我不能接受多个答案是正确的。 所以Shikiryu解决方案也是正确的。

    如果您需要完全像链接中给出的打印

    UPDATE1:尝试这个JS代码,它将打印结果,因为我在第一点写的 * 注意:代码没有优化*

      $(document).ready(function(){ var xml = "                        "; var data = $.parseXML(xml); console.log(data); var htmltxt="test
      "; $(data).find('method').each(function(){ var namenode = $(this).attr('name'); var count = 0; $(this).children('childcall').each(function(){ count++; }); if(count>0){ htmltxt = htmltxt + "" + namenode +"
      "; $(this).children('childcall').each(function(){ var name = $(this).attr('name'); htmltxt = htmltxt + "
    • " + name + "
    • "; }); htmltxt = htmltxt + "
    "; }else{ htmltxt = htmltxt +"
  • "+namenode+"
  • "; } }); htmltxt = htmltxt + ""; $("#page-wrap").html(htmltxt); });

    更新2 JSFiddle

    首先 ,您需要生成与该示例相同的HTML(使用ul和li而不是div)

     $(data).find('method').each(function(){ var hasChild = $(this).children('childcall').length > 0; curLi += '': '>'); curLi += $(this).attr('name'); if(hasChild){ curLi += ''; } curLi += ''; }); $('#test').append(curLi); 

    请注意,它可以进行优化。

    然后 ,你需要指出一些CSS(隐藏孩子,添加+和 – 等)

     .category ul{display:none;} 

    最后 ,您需要应用他们的JS

     $('li.category').click(function(event){ if($(this).is('.plusimageapply')) { $(this).children().show(); $(this).removeClass('plusimageapply'); $(this).addClass('minusimageapply'); } else { $(this).children().hide(); $(this).removeClass('minusimageapply'); $(this).addClass('plusimageapply'); } }); 

    这给了: http : //jsfiddle.net/dujRe/1/

    使用JQuery的切换效果,它是这样的:

     $("#CollapseTrigger").click(function () { $("#ListToBeHidden").toggle("slow"); }); 

      以上就是jQuery教程分享使用JQuery的可折叠列表相关内容,想了解更多jQuery开发(异常处理)及jQuery教程关注计算机技术网(www.ctvol.com)!)。

      本文来自网络收集,不代表计算机技术网立场,如涉及侵权请联系管理员删除。

      ctvol管理联系方式QQ:251552304

      本文章地址:https://www.ctvol.com/jquerytutorial/561304.html

      (0)
      上一篇 2021年2月4日
      下一篇 2021年2月4日

      精彩推荐