0

我正在尝试获得切换效果,但不太确定该怎么做或要寻找什么。(我加载了 Jquery)。

假设 html 类似于

<table class="left-dates">
    <tr><td>All Dates</td></tr>
    <tr><td>01 dec 2009</td></tr>
    <tr><td>02 dec 2009</td></tr>   
    <tr><td>03 dec 2009</td></tr>   
    <tr><td>04 dec 2009</td></tr>   
</table>

<div class="box 01-dec-2009">
    foo
</div>

<div class="box 03-dec 2009">
    bar
</div>

<div class="box 04-dec-2009">
    foobar
</div>

采取的步骤

  1. 显示所有 div
  2. 单击日期的 td 将隐藏除 div 之外的所有内容,单击当天的课程
  3. 单击“所有日期”将再次显示所有内容

知道我怎么能干净地做到这一点吗?理想情况下使用 JQuery。

4

3 回答 3

1

我会这样尝试:

var $boxes = $('div.box');

$('.left-dates td:gt(0)').click(function(e){
   var class = this.innerHTML.replace(/ /g, '-'); // Convert text to class
   $boxes.filter(':visible').not('.' + class).hide(); // All visible div.box that don't have the class we are going to show.
   $boxes.filter('.' + class).show(); // Show this class
});
$('.left-dates td:first').click(function(e){
   $boxes.show();
});

编辑:我换成.click().live('click'). 如果会有大量行,最好使用.live()而不是绑定一个click()事件到每个行td

此外,您发布的 HTML 有错误。03div 之前缺少一个连字符2009

于 2009-12-04T02:04:39.373 回答
0

这是一个使用 jQuery 的工作示例。

请注意,我必须更改您的 div 类和td标签以删除空格,以便标签等同于类名。如果您不希望标签中出现破折号,则可以在 Javascript 中进行字符串操作以删除空格或为tds 提供与其相应 div 相同的类名,然后查看单击的类名td而不是其内部文本。

<html>
<head>
    <title>jQuery hiding example</title>

    <script type='text/javascript' src='http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js'></script>

    <script type='text/javascript'>
        $(document).ready(function(){
            $('td').click(function() {
                var target = $(this).text();
                if (target == 'All Dates') {
                    $('div.box').show();
                } else {
                    $('div.box').hide();
                    $('div.' + target).show();
                }
            });
        });
    </script>
</head>
<body>
    <table class="left-dates">
        <tr><td>All Dates</td></tr>
        <tr><td>01-dec-2009</td></tr>
        <tr><td>02-dec-2009</td></tr>       
        <tr><td>03-dec-2009</td></tr>       
        <tr><td>04-dec-2009</td></tr>       
    </table>

    <div class="box 01-dec-2009">
        foo
    </div>

    <div class="box 03-dec-2009">
        bar
    </div>

    <div class="box 04-dec-2009">
        foobar
    </div>
</body>
</html>
于 2009-12-04T02:15:11.927 回答
0

识别您的<td>All Dates</td>唯一身份。为您的所有日期分配相同的类或其他标识符<td>s。给他们一个点击处理程序,隐藏所有 .box 元素,除了具有相同日期的元素。在您的示例中,您与将日期设置<td>为与 div 中日期的类名相同的做法不一致,这是我将要做的事情所需要的。

<table class="left-dates">
    <tr><td id="alldates">All Dates</td></tr>
    <tr><td id="date">01 dec 2009</td></tr>
    <tr><td id="date">02 dec 2009</td></tr>       
    <tr><td id="date">03 dec 2009</td></tr>       
    <tr><td id="date">04 dec 2009</td></tr>       
</table>

// unhide all box elements
$("#alldates").click(function(e){ $(".box").show(); });

// For each date <td> element
$("#date").each(function(){
   // assign a click event
   $(this).click(function(e){
      // when the user clicks, get the
      // <td>'s text contents
      var myval = $(this).text();
      // and grab each element with the
      // 'box' css class
      $(".box").each(function(){
         // for each of these 'box' elements,
         // if it has a class matching the date
         // they selected, return
         if($(this).has(myval))
         {
            return;
         }
         else
         {
            // otherwise, hide itself
            $(this).hide();
         }
      });
   });
});
于 2009-12-04T02:18:55.423 回答