Няма описание
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {eyou:static file="skin/js/bootstrap-hover-dropdown.min.js" code="ask"/}
  2. <div class="sbox">
  3. <!-- 搜索 -->
  4. <div class="search">
  5. <form action="" method="get" name="search" id="search" onsubmit="return formSubmit();">
  6. <input type="hidden" name="ct" value="search">
  7. <input class="searchinput" name="q" placeholder="输入问题关键字" autocomplete="off" value="{$eyou.field.SearchName}">
  8. <span class="search-icon" id="search-bottom" onclick="formSubmit();"></span>
  9. <div class="search-result">
  10. </div>
  11. <div class="hot-list" style="display: none;" id="search_keywords_list">
  12. </div>
  13. </form>
  14. </div>
  15. <!-- END -->
  16. <!-- 栏目导航 -->
  17. <ul class="nav navbar-nav navbar-right navlist" id="asktypes">
  18. <li class="nav-item">
  19. <a href="{$eyou.field.NewDateUrl}" title="问答首页" class="link {eyou:eq name='$eyou.field.IsTypeId' value='0'}active{/eyou:eq}">问答首页</a>
  20. </li>
  21. {eyou:volist name="$eyou.field.TypeData" id="vo"}
  22. <li class="margin-left-0 nav-item">
  23. <a class="link {eyou:eq name='$eyou.field.IsTypeId' value='$vo.type_id'}active{/eyou:eq}" href="{$vo.Url}" data-hover="dropdown" aria-expanded="false">{$vo.type_name}
  24. {eyou:notempty name="$vo.SubType"}
  25. <span class="caret fa-angle-down"></span>
  26. {/eyou:notempty}
  27. </a>
  28. {eyou:notempty name="$vo.SubType"}
  29. <ul class="dropdown-menu dropdown-menu-right bullet" role="menu">
  30. {eyou:volist name="$vo.SubType" id="st"}
  31. <li><a href="{$st.Url}">{$st.type_name}</a></li>
  32. {/eyou:volist}
  33. </ul>
  34. {/eyou:notempty}
  35. </li>
  36. {/eyou:volist}
  37. </ul>
  38. <!-- END -->
  39. <div class="clearfix"></div>
  40. </div>
  41. <div class=" blank10"></div>
  42. <script type="text/javascript" charset="utf-8">
  43. $(function(){
  44. $('#search input[name=q]').click(function(){
  45. if ($('#search input[name=q]').val() == '') {
  46. $('#hot_keywords_list').show();
  47. }
  48. });
  49. });
  50. // 搜索提交
  51. function formSubmit()
  52. {
  53. var q = $('#search input[name=q]').val();
  54. var url = '{$eyou.field.NewDateUrl}';
  55. if (url.indexOf('?') > -1) {
  56. url += '&';
  57. } else {
  58. url += '?';
  59. }
  60. url += 'search_name=' + q;
  61. window.location.href = url;
  62. return false;
  63. }
  64. </script>