переключить родительский элемент с родительским - PullRequest
1 голос
/ 22 сентября 2011

У меня есть эта структура

<p>Integer ac porta felis. <a href="#" class="despLeerMas">...read more</a></p>
<div class="none masInfodespLeerMas"> onsectetur adipiscing elit. Sed condimentum dictum vestibulum. Praesent odio dolor, dapibus et consectetur quis, pulvinar eu orci. Integer ac porta felis.<a href="#" class="ocultarLeerMas"> ...read less</a></div>

<p>Integer ac porta felis. <a href="#" class="despLeerMas">...leer más</a></p>
<div class="none masInfodespLeerMas"> onsectetur adipiscing elit. Sed condimentum dictum vestibulum. Praesent odio dolor, dapibus et consectetur quis, pulvinar eu orci. Integer ac porta felis.<a href="#" class="ocultarLeerMas">..read less</a></div>

и я с этим

$('.despLeerMas').click(function ()
    {
        $(this).parent().next('.masInfodespLeerMas').toggle();
        $(this).parent().next('.ocultarLeerMas').toggle();
        $(this).toggle();
        return false;
    });
    $('.ocultarLeerMas').click(function ()
    {
        $(this).parent().toggle();
         $(this).parent().parents('p').find('.despLeerMas').toggle();  ///cant' get it working
        $(this).toggle();
        return false;
    });

онлайн здесь: http://jsfiddle.net/xwQGN/1/

Скрытое отображается при нажатии .despLeerMas (а .despLeerMas скрыто) при нажатии .ocultarLeerMas div снова скрывается проблема в том, что .despLeerMas снова не отображается: S (я не могу получить с кодом выбора, я думаю)

1 Ответ

1 голос
/ 22 сентября 2011

Попробуйте:

$(this).parent().prev().find('.despLeerMas').toggle();

Ваша обновленная скрипка.

...