7

我有以下菜单,其中最多可以包含大约 50 个项目和两个链接,用户可以使用它们导航到上一个或下一个城市。在此示例中,我只显示了四个地址链接。

<ul id="menu">
   <li><a href="/City/0101004H">1</a></li>
   <li><a href="/City/0101004I">2</a></li>
   <li><a href="/City/0101004J">3</a></li>
   <li><a href="/City/0101004K">4</a></li>
</ul>

<a id="prev" href="#"><img width="16" height="16" src="/images/prev.png">Prev</a>
<a id="next" href="#"><img width="16" height="16" src="/images/next.png">Next</a>

我对堆栈溢出有一些帮助,并提出了以下代码:

小提琴

$("#menu").on('click', 'a[href^="/City"]', function(event) {
   event.preventDefault();
      var prev = $(this).parent().prev().find('a');
      var next = $(this).parent().next().find('a');
      $('#prev').prop('href', jQuery(prev).prop('href')).prop('title', 'City ' + jQuery(prev).text());
      $('#next').prop('href', jQuery(next).prop('href')).prop('title', 'City ' + jQuery(next).text())
});

当我单击其中一个菜单项时,这会将上一个和下一个的 href 设置为适当的值。它适用,但不适用于列表中的第一个和最后一个项目。我需要的是这个:

a)单击第一项时,我希望#prev 更改为:

<a id="prev" href="#"><img src="/images/noentry.png"></a>

b)单击最后一项时,我希望#next 更改为:

<a id="next" href="#"><img src="/images/noentry.png"></a>

有没有一种简单的方法可以在不添加太多额外代码的情况下做到这一点?

4

4 回答 4

10

您可以使用以下方法测试元素是第一个子元素还是最后一个子元素:

$(this).parent().is(":first-child");
$(this).parent().is(":last-child");

如果this引用a被点击的对象,我们将通过测试其父项是否是第一个子项或最后一个子项,或两者都不是,来测试它是第一个链接还是列表中的最后一个链接。

此外,您可以根据这些值构建属性对象:

$("#menu").on('click', 'a', function(event) {

   // Prevent link from taking us anywhere
   event.preventDefault();

   // We'll be referencing the parent numerous times
   var parent = $(this).parent();

   // Determine the new properties of the PREV link
   var prev = parent.is(":first-child") 
       ? { html: '<img src="/images/noentry.png" />', 
           title: null } 
       : { html: '<img src="/images/prev.png" /> Prev', 
           title: 'City ' + parent.prev().text() } ;

   // Determine the new properties of the NEXT link
   var next = parent.is(":last-child") 
       ? { html: '<img src="/images/noentry.png" />', 
           title: null } 
       : { html: '<img src="/images/next.png" /> Next', 
           title: 'City ' + parent.next().text() } ;

    // Set new attribtes of both PREV and NEXT
    $("#prev").attr( prev );
    $("#next").attr( next );

});​

您可以根据需要进一步构建#prev#next元素的属性。

演示:http: //jsfiddle.net/MX94J/1/

于 2012-05-27T04:22:57.320 回答
1

如果一个元素elt是其兄弟元素中的第一个,$(elt).prev().length则为0.
如果一个元素elt是其兄弟元素中的最后一个,$(elt).next().length则为0.

于 2012-05-27T04:21:22.160 回答
1

您可以检查 jQuery 对象长度是否为零并采取相应措施:

$("#menu").on('click', 'a[href^="/City"]', function(event) {
      event.preventDefault();
      var pHref, nHref, pTitle, nTitle;
      var prev = $(this).parent().prev().find('a');
      var next = $(this).parent().next().find('a');
      if (prev.length == 0) {
          pHref = "#";
          pTitle = "";
      } else {
          pHref = prev.prop('href');
          pTitle = prev.prop('City' prev.text());
      }
      if (next.length == 0) {
          nHref = "#";
          nTitle = "";
      } else {
          nHref = next.prop('href');
          nTitle = next.prop('City' prev.text());
      }

      $('#prev').prop('href', pHref).prop('title', pTitle);
      $('#next').prop('href', nHref).prop('title', nTitle)
});

或具有本地功能的清洁工来完成工作:

("#menu").on('click', 'a[href^="/City"]', function(event) {

      function setProps(targetSelector, srcObject) {
          var href, title;
          if (srcObject.length) {
              href = srcObject.prop('href');
              title = srcObject.prop('title');
          } else {
              href = "#";
              title = "";
          }
          $(targetSelector).prop('href', href).prop('title', title);
      }

      event.preventDefault();
      var p = $(this).parent();
      setProps('#prev', p.prev().find('a'));
      setProps('#next', p.next().find('a'));
});
于 2012-05-27T04:26:35.663 回答
1

执行此操作的另一种方法是使用索引而不是属性:

http://jsfiddle.net/QrE6u/1/

var index = 0;
var nElements = $('#menu a').length;

$('#menu a').click(function(e) {
    e.preventDefault();
    index = $(this).parents('ul').find('a').index(this);
    if (index==0) {
       $('#prev img').attr('src', '/images/noentry.png');
    } 
    if (index==nElements-1) {
      $('#next img').attr('src', '/images/noentry.png');

    }
    alert(index);
});

    $('#prev').click(function() {
      index = (index - 1) % nElements;
      $('#menu a').eq(index).click();
    }); 
    $('#next').click(function() {
      index = (index + 1)% nElements;
      $('#menu a').eq(index).click();
    });
​
于 2012-05-27T04:31:57.507 回答