Jump to content
  • 0

Ошибка jquery


ishurgaya
 Share

Question

Есть список ul , если li в этом списке содержит тег 'a' ,то удалить этот li .

Делаю вот так:

  for(var si=0;si<html.length;si++){     if($("li:nth-child("+si+")".indexOf('a') + 1)){            $(this).remove();     }   }

вроде все работает но в консоли выходит ошибка:
 

Error: Syntax error, unrecognized expression: :nth-child...value:null},fb.error=function(a){throw new Error("Syntax error, unrecognized exp...jquery....=4.1.10 (строка 2, столбец 12720)


Если закомментировать код который выложил ,то ошибка в консоли не появляется.

Как исправить ошибку?
Спасибо

Edited by ishurgaya
Link to comment
Share on other sites

10 answers to this question

Recommended Posts

  • 0

 

???

$('li a', 'ul').parent().remove();

спасибо! помогло.

 

можно последний вопрос. как написать если, нужно удалить все li (вместе с содержимым) ,которые не содержат в себе тег img?

 

спасибо.

Edited by ishurgaya
Link to comment
Share on other sites

  • 0
$('li').each(function () { if ($('img', this).length < 1) {   $(this).remove(); }});

Можно попроще и покороче:

$('li img').closest('li').remove();

или если img всегда лежит в родительском li то ещё короче:

$('li img').parent().remove();
  • Like 2
Link to comment
Share on other sites

  • 0

@wwt, как вариант.

вот ведь =))) удалить те где нет img ))) Даже и не поправилии меня ))

 

так тогда еще можно, не проще вашего

$('li').filter(function(i){return $('img',this).length?0:1;}).remove();
  • Like 1
Link to comment
Share on other sites

  • 0
так тогда еще можно, не проще вашего

 

тогда уж с таким кодом и утилита просится.)

   (function ($) {    $.removeList = function(el, inverte) {       var elem =  el || 'li',           inverte = inverte || false,           result;       $(elem).filter(function(i) {         if (inverte) {          result = $('img',this).length?1:0;         }         else {          result = $('img',this).length?0:1;         }         return result;       }).remove();    }   })(jQuery); 
// Удалим все ссылки которые содержат в себе картинку$.removeList('a', true); 
Edited by by chris
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy