选择每个新的A元素

时间:2014-03-07 15:51:49

标签: javascript jquery html css dom

我有一个自动加载图片的页面。这些图片包含在元素<a>中。我需要查找并删除所有元素<a>,但包含类.private_overlay的元素除外。我为这段非常简单的代码创建了:

$('#content a').not($('a').find('div.private_overlay').parent()).remove();

我手动运行时可以正常工作。但它不适用于我运行脚本时加载的元素。

我试图以这种方式循环:

$(window).scroll(function() {
  $('#content a').not($('a').find('div.private_overlay').parent()).remove();
});

在某种程度上它起作用。但这不是我所期待的。只需单击一下即可运行此脚本。

enter image description here

我只是想申请处理此页面上的新项目:

enter image description here

有很多帖子都有帖子。我正在寻找标记为私人的帖子。为此,我必须隐藏所有未标记的帖子,包括那些尚未加载的帖子。

这就是它目前的外观和工作方式:

enter image description here

我需要知道如何选择新元素,因为我仍然需要找到下一张或上一张图像。

我粘贴在代码下方:

function searchBox() {
  $('body').append('<div id="searchBox"><p style="margin: 0px;"><strong>Wyszukiwarka prywatnych postów:</strong></p>    \
<p style="margin: 5px auto; text-align: center"><input id="previousPost" type="button" value="Poprzedni post"></input>  \
<input id="nextPost" type="button" value="Następny post"></input></p>   \
<p style="margin: 0px;"><input id="hidePosts" type="checkbox"></input><label for="hidePosts" style="vertical-align: bottom;">Kasuj niepotrzebne posty</label></p></div>');

  $('#searchBox').css({
    position: 'fixed',
    left: '20px',
    bottom: '20px',
    background: 'white',
    color: 'rgb(125, 125, 125)',
    fontSize: '13px',
    border: '1px solid rgb(125, 125, 125)',
    borderRadius: '7px',
    padding: '7px',
    zIndex: '9999',
    boxShadow: '0px 0px 4px rgba(0, 0, 0, 0.3)',
    display: 'none'
  }).fadeIn();

  $('#hidePosts').one('click', function() {
    $(window).scroll(function(){
      $('#content a').not($('a').find('div.private_overlay').parent()).remove();
    });
    $(this).attr('disabled','disabled');
  });

  $('#previousPost').click(function() {
    $('html, body').stop().animate({
      scrollTop: $("#content a").prev().offset().top
    }, 2000);
  });

  $('#nextPost').click(function() {
    $('html, body').stop().animate({
      scrollTop: $("#content a").next().offset().top
    }, 2000);
  });
};

我试图理解this article,但我不明白。

1 个答案:

答案 0 :(得分:0)

好的,通过评论中的对话,您希望当用户点击按钮时,立即删除所有<a>个没有类private_overlay的实例。因此,首先,可以简化删除代码。

$('#content a').not('a.private_overlay').remove();

其次......我们需要做的就是在用户点击按钮时调用此操作。

$('button#remove').click(function() {

    $('#content a').not('a.private_overlay').remove();

});

这甚至可以在动态插入的内容中使用,如小提琴所示。

Working Fiddle