Переключение в Javascript

0

У меня есть следующий фрагмент кода

<!DOCTYPE html>

<html lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title></title>

<script src="C:\Users\rapandey\Documents\Visual Studio 2012\Projects\jquery-1.11.0.min.js">
</script>
<script>
    $(document).ready(function () {
        $('.container .text').each(function () {
            if ($(this).height() > 100) {
                $(this).parent().addClass('container-cut').append('<div class="enlarge">... (Show More)</div>');
            }

        });

        $(".enlarge").click(function () {
           // $(this).remove();

            text_height = $(".text").height();

            $(".container").animate({
                height: text_height
            });

            $('.container .text').each(function () {
                if ($(this).height() > 100) {
                    $(this).parent().addClass('container-cut').append('<div class="contract">... (Show Less)</div>');
                }

            });
        });


        $(".contract").click(function () {

            $(".container").animate({
                height: 100
            });

        });
    });
    </script>

<style type="text/css">
   .container{
    width:200px;
    border:1px solid #cacaca;
    font-size:12px;
    overflow:hidden;
    position:relative;
    margin:auto;
    padding:10px;
}
.container-cut { height: 100px }
.enlarge{
    position:absolute;
    background:#fff;
    bottom:-1px;
    right:10px;
    width:80px;
    color:blue;
}
  .contract{
    position:absolute;
    background:#fff;
    bottom:-1px;
    right:10px;
    width:80px;
    color:blue;
}

</style>
</head>

<body>
<div class="container">
    <div class="text">
Far far away, behind the word mountains, far from the countries Vokalia and Consonantia, there live the blind texts. Separated they live in Bookmarksgrove right at the coast of the Semantics, a large language ocean. A small river named Duden flows by their place and supplies it with the necessary regelialia. It is a paradisematic country, in which roasted parts of sentences fly into your mouth. Even the all-powerful Pointing has no control about the blind texts it is an almost unorthographic life One day however a small line of blind text by the name of Lorem Ipsum decided to leave for the far World of Grammar. The Big Oxmox advised her not to do so, because there were thousands of bad Commas, wild Question Marks and devious Semikoli, but the Little Blind Text didnt listen. She packed her seven versalia, put her initial into the belt and made herself on the way. When she reached the first hills of the Italic Mountains, she had a last view back on the skyline of her hometown Bookmarksgrove, the headline of Alphabet Village and the subline of her own road, the Line Lane. Pityful a rethoric question ran over her cheek, then
    </div>
</div>
</body>
</html>

Таким образом, эта часть кода связана с опцией toggle, где будет показана часть кода, а часть будет скрыта с возможностью показать больше. Когда кто-либо нажимает на него, загружается все содержимое. Наконец, появляется еще одна ссылка, которая меньше показана. когда кто-то нажимает на шоу, содержимое снова должно сжиматься. Но у меня нет никакой подсказки, по какой-то причине сокращение текста не вызвано. Контракт не вызывается

Прикреплена ссылка для jsfiddle http://jsfiddle.net/rapandey/48HyG/

Показать меньше вариантов не работает

Теги:
javascript-events

1 ответ

0
Лучший ответ

Вам нужна передача событий:

 $(".container").on('click','.contract',function () {
        $(".container").animate({
            height: 100
        });
 });

также сделать то же самое для показа большего опциона:

 $(document).on('click','.enlarge',function () {
   //rest code
 });

Рабочая демонстрация

  • 0
    Спасибо милинд ... это работает

Ещё вопросы

Сообщество Overcoder
Наверх
Меню