Показать сообщение отдельно
  #13 (permalink)  
Старый 17.11.2015, 12:58
Кандидат Javascript-наук
Отправить личное сообщение для Castromen Посмотреть профиль Найти все сообщения от Castromen
 
Регистрация: 04.02.2015
Сообщений: 116

Заменил строчку 32 s.first().click() на это
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
  <script>
     $(function(){
       var s = $("ul.div-nav li"), b = $(".webpart");
       b.toggle();
       s.click(function() {
         var indx = s.index(this), p = b.eq(indx);
         s.not(this).removeClass("activated");
         $(this).toggleClass("activated");
         b.not(p).fadeOut('fast') ;
         p.toggle('slow')
      });
var hash = window.location.hash;
    hash && s.filter('[data-hash="'+hash+'"]').click()

});
  </script>


Добавил data-hash="fkp" во все <li>

<ul class="div-nav">
<li class="choice show-statys activated" style="width:103px;height:110px" data-hash="fkp1"><img alt="icon_tep.PNG" src="/sites/peo/ИС2/SiteAssets/SitePages/Оружейный_FitOut_Команда/icon_tep.PNG" style="border-bottom:0px;border-left:0px;margin:5px;width:80px;height:69px;border-top:0px;border-right:0px"><br>
Статус/ТЭП</li>
<li class="choice show-comanda" style="width:103px;height:110px" data-hash="fkp2"><img alt="icon_komanda.PNG" src="/sites/peo/ИС2/SiteAssets/SitePages/Оружейный_FitOut_Команда/icon_komanda.PNG" style="border-bottom:0px;border-left:0px;margin:5px;width:72px;height:66px;border-top:0px;border-right:0px"><br>
Команда проекта</li>
<li class="choice show-kv_cell" style="width:103px;height:110px" data-hash="fkp3"><img alt="icon_kv_cel.PNG" src="/sites/peo/ИС2/SiteAssets/SitePages/Оружейный_FitOut_Команда/icon_kv_cel.PNG" style="border-bottom:0px;border-left:0px;margin:5px;width:63px;height:66px;border-top:0px;border-right:0px"><br>
Квартальные цели</li>
<li class="choice show-plan_mec" style="width:103px;height:110px" data-hash="fkp4"><img alt="icon_plan_mec.PNG" src="/sites/peo/ИС2/SiteAssets/SitePages/Оружейный_FitOut_Команда/icon_plan_mec.PNG" style="border-bottom:0px;border-left:0px;margin:5px;width:68px;height:64px;border-top:0px;border-right:0px"><br>
План работ на месяц</li>
<li class="choice show-egened_PF" style="width:109px;height:110px" data-hash="fkp5"><img alt="icon_egened_PO.PNG" src="/sites/peo/ИС2/SiteAssets/SitePages/Оружейный_FitOut_Команда/icon_egened_PO.PNG" style="border-bottom:0px;border-left:0px;margin:5px;width:58px;height:63px;border-top:0px;border-right:0px"><br>
Еженедельный план/факт</li>
<li class="choice show-kontrol_srok" style="width:100px;height:110px" data-hash="fkp6"><img alt="icon_kontrol_srok.PNG" src="/sites/peo/ИС2/SiteAssets/SitePages/Оружейный_FitOut_Команда/icon_kontrol_srok.PNG" style="border-bottom:0px;border-left:0px;margin:5px;width:71px;height:60px;border-top:0px;border-right:0px"><br>
Контроль сроков</li>
<li class="choice show-kontrol_bud" style="width:100px;height:110px" data-hash="fkp7"><img alt="icon_kont_bud.PNG" src="/sites/peo/ИС2/SiteAssets/SitePages/Оружейный_FitOut_Команда/icon_kont_bud.PNG" style="border-bottom:0px;border-left:0px;margin:5px;width:66px;height:63px;border-top:0px;border-right:0px"><br>
Контроль бюджета</li>
</ul>


Создал ссылку <a href="/sites/peo/ИС2/SitePages/test.aspx#fkp4">123</a>
Не работает, и еще заметил что когда заходишь просто на страницу содержание активного меню пропало.
Когда было s.first().click() показ. контент.
Ответить с цитированием