【OJ源码】css + javascript 实现tag标签的显示,插入和自动联想
HappyOJ  post at 1 years ago 73.9k 0 0

效果

1683002216437.png
1683001839854.png

CSS

  1. .tags ul{margin-bottom:1em;list-style-type:none;}
  2. .tags ul li{list-style-type:none;}
  3. .tags {display: block; padding: 1px 3px;}
  4. .tags-sidebar{margin: 3px; line-height:28px;}
  5. .tags a{
  6. -webkit-border-radius: 4px;
  7. -moz-border-radius: 4px;
  8. border: 1px solid #DDD;
  9. background: #E6E6E6;
  10. padding: 2px 3px 2px 3px;
  11. margin-right: 3px;
  12. color: #454545!important;;
  13. text-decoration: none;
  14. white-space: nowrap;
  15. line-height: 24px;
  16. font-size: 13px;
  17. }
  18. .tags .tag-name{
  19. color: #454545;
  20. }
  21. .tags .tag-count{
  22. opacity: .85;
  23. position: relative;
  24. display: inline-block;
  25. min-width: 16px;
  26. padding: 3px 2px;
  27. margin: 0px auto;
  28. font-size: 12px;
  29. line-height: 1;
  30. color: #fff;
  31. text-align: center;
  32. white-space: nowrap;
  33. vertical-align: middle;
  34. background-color: #777;
  35. border-radius: 50%;
  36. }
  37. .tags a:hover {
  38. color: #454545;
  39. font-size: 13px;
  40. background-color: #DDD;
  41. text-shadow: 0px 0px 1px #000000;
  42. -moz-transition: all 0.2s linear 0s;
  43. -webkit-transition: all 0.2s linear 0s;
  44. }
  45. .input-tags {
  46. border-bottom-style:none;
  47. background: none transparent !important;
  48. border: none !important;
  49. box-shadow: none !important;
  50. outline: none;
  51. z-index: 2;
  52. cursor: text;
  53. padding: 0;
  54. margin: 6px 0px 0px 6px;
  55. }
  56. .tags-autocomplete-select {
  57. z-index: 10;
  58. border: 1px solid #dfe3e9;
  59. border-radius: 3px;
  60. display: block;
  61. width: 100%;
  62. vertical-align: middle;
  63. padding: 3px;
  64. }
  65. .tags-autocomplete-select .icon {
  66. float: right;
  67. display: inline-block;
  68. width: 0;
  69. height: 0;
  70. margin: 12px 6px 0 6px;
  71. vertical-align: middle;
  72. border-top: 4px dashed;
  73. border-top: 4px solid\9;
  74. border-right: 4px solid transparent;
  75. border-left: 4px solid transparent;
  76. }
  77. .tags-autocomplete-select .label-item{
  78. display: inline-block !important;
  79. white-space: normal;
  80. vertical-align: top;
  81. padding: 6px 8px;
  82. margin-right: 3px;
  83. box-shadow: 0px 0px 0px 1px rgb(34 36 38 / 15%) inset;
  84. background-color: #EFEFEF;
  85. border: 0px solid transparent;
  86. border-radius: 0.28571429rem;
  87. color: #6a6a6a;
  88. cursor: pointer;
  89. text-decoration: none;
  90. line-height: 1;
  91. }
  92. .tags-autocomplete-select-menu{
  93. display: none;
  94. box-shadow: 0px 2px 3px 0px rgb(34 36 38 / 15%);
  95. border-radius: 0 0 3px 3px;
  96. cursor: auto;
  97. overflow-x: hidden;
  98. overflow-y: auto;
  99. border-top-width: 0px !important;
  100. outline: none;
  101. margin: 0px -1px;
  102. min-width: calc(100% + 2px );
  103. width: calc(100% + 2px );
  104. max-height: 200px;
  105. transition: opacity 0.1s ease;
  106. left: 0px;
  107. top: 0px;
  108. padding: 0px 0px;
  109. background: #FFFFFF;
  110. font-size: 1em;
  111. text-shadow: none;
  112. text-align: left;
  113. border: 1px solid rgba(34,36,38,0.15);
  114. z-index: 11;
  115. }
  116. .tags-autocomplete-select-item{
  117. line-height: 1.333;
  118. border-top: 1px solid rgb(250, 250, 250);
  119. position: relative;
  120. cursor: pointer;
  121. display: block;
  122. text-align: left;
  123. line-height: 1em;
  124. padding: 6px;
  125. -webkit-box-shadow: none;
  126. box-shadow: none;
  127. -webkit-touch-callout: none;
  128. }
  129. .tags-autocomplete-select-item:hover {
  130. background: #f7f8f9;
  131. }
  132. i.icon-delete {
  133. font-family: 'Icons';
  134. font-style: normal;
  135. cursor: pointer;
  136. margin-right: 0em;
  137. margin-left: 0.5em;
  138. font-size: 0.92857143em;
  139. opacity: 0.5;
  140. -webkit-transition: background 0.1s ease;
  141. transition: background 0.1s ease;
  142. }
  143. i.icon-delete:before {
  144. content: "X";
  145. }

html代码

  1. input框框输入tag,自动遇到逗号插入完整tag,同时支持自动联想tag并选择。
  2. <link href="css/jquery-ui.css" rel="stylesheet" type="text/css"/>
  3. <style>
  4. .ui-autocomplete-loading { background: white url('img/ui-anim_basic_16x16.gif') right center no-repeat; }
  5. .ui-autocomplete {
  6. max-height: 200px;
  7. overflow-y: auto;
  8. /* prevent horizontal scrollbar */
  9. overflow-x: hidden;
  10. /* add padding to account for vertical scrollbar */
  11. padding-right: 3px;
  12. font-size:11px;
  13. line-height: 12px;
  14. }
  15. /* IE 6 doesn't support max-height
  16. * we use height instead, but this forces the menu to always be this tall
  17. */
  18. * html .ui-autocomplete {
  19. height: 200px;
  20. }
  21. </style>
  22. <div>
  23. <div class="tags-autocomplete-select">
  24. <input type="hidden" id="submit-tags" class="problem-tag" name="tagList" th:value="${message.tag}"/>
  25. <i class="icon"></i>
  26. <input type="text" id="input-tags" autocomplete="off" class="input-tags"/>
  27. <div class="tags-autocomplete-select-menu"></div>
  28. </div>
  29. </div>
  1. 显示tag
  2. <div class="tags">
  3. <span th:each="tag : ${message.tags}">
  4. <a th:href="'/search?word=' + ${tag.name} + '&type=topic'" rel="tag" th:text="${tag.name}"></a>
  5. </span>
  6. </div>

JS代码

  1. $(document).ready(function(){
  2. var cache = {};
  3. function showSelectTags(tags) {
  4. $(".tags-autocomplete-select-menu").html("");
  5. $(".tags-autocomplete-select-menu").fadeIn();
  6. var opt = "";
  7. $.each(tags, function(i, event) {
  8. /* 过滤已经插入的tag */
  9. var tagList = $('#submit-tags').val().split(",");
  10. if (tagList.indexOf(tags[i]) == -1) {
  11. opt += "<div class=\"tags-autocomplete-select-item\" data-value=\""+ tags[i] +"\">" + tags[i] +"</div>";
  12. }
  13. });
  14. $(".tags-autocomplete-select-menu").html(opt);
  15. }
  16. function searchTags(word) {
  17. if ( word in cache ) {
  18. showSelectTags(cache[ word ]);
  19. } else {
  20. /* api url可以替换为自己的地址,用户查询tag */
  21. $.getJSON("/api/tags/search",{q: word},function(json) {
  22. if (json.success != true) {
  23. cache[ word ] = json.data;
  24. showSelectTags(json.data);
  25. }
  26. });
  27. }
  28. }
  29. function insertShowTags(tags) {
  30. $.each(tags, function(i, event) {
  31. if (tags[i].length != 0) {
  32. var opt = "<a class=\"label-item\">" + tags[i] + "<i class=\"icon-delete\"></i></a>";
  33. $("#input-tags").before(opt);
  34. }
  35. });
  36. }
  37. function updateSubmitTags() {
  38. var tagsList = "";
  39. $("a.label-item").each(function(){
  40. if (tagsList.length == 0) {
  41. tagsList = $(this).text();
  42. } else {
  43. tagsList += "," + $(this).text();
  44. }
  45. });
  46. $('#submit-tags').val(tagsList);
  47. }
  48. function insertTags(insertTag) {
  49. var tags = insertTag.split(",");
  50. insertShowTags(tags);
  51. /* 清空输入框内容 */
  52. $("#input-tags").val("");
  53. /* 插入tag到隐藏的input框 */
  54. updateSubmitTags();
  55. }
  56. function initShowTags() {
  57. var tags = $('#submit-tags').val().split(",");
  58. insertShowTags(tags);
  59. }
  60. initShowTags();
  61. $("#input-tags").focus(function(){
  62. searchTags($(this).val().replace(/(^\s*)|(\s*$)/g, ""));
  63. });
  64. $("#input-tags").blur(function(){
  65. $(".tags-autocomplete-select-menu").fadeOut();
  66. });
  67. $("#input-tags").bind('input propertychange',function(e){
  68. searchTags($(this).val().replace(/(^\s*)|(\s*$)/g, ""));
  69. var word = $(this).val();
  70. var pos = word.indexOf(",");
  71. if (pos > 0) {
  72. insertTags(word);
  73. }
  74. });
  75. $(document).on("click",".tags-autocomplete-select-item",function() {
  76. insertTags($(this).attr("data-value"));
  77. });
  78. $(document).on("click",".icon-delete",function() {
  79. $(this).parent().remove();
  80. updateSubmitTags();
  81. });
  82. });