jQuery目标组合框隐藏

时间:2014-10-29 07:42:04

标签: javascript jquery combobox

我正在尝试执行jQuery命令来隐藏组合框。 HTML是:

<table id="system-selector" cellspacing="0">
   <tr>
       <td>
           <span class="custom-combobox" style="display: inline-block;">
              <span role="status" aria-live="polite" class="ui-helper-hidden-accessible"></span>
              <input id="select_system_CB" name="select_system_CB" title="" class="custom-combobox-input ui-widget ui-widget-content ui-state-default ui-corner-left ui-autocomplete-input" autocomplete="off">
              <a tabindex="-1" title="Show All Items" class="ui-button ui-widget ui-state-default ui-button-icon-only custom-combobox-toggle ui-corner-right" role="button" aria-disabled="false">
                 <span class="ui-button-icon-primary ui-icon ui-icon-triangle-1-s"></span>
                 <span class="ui-button-text"></span>
              </a>
            </span>
         </td>
       </tr>
OTHER ROWS HERE.....

我执行这个jQuery没有错误或成功:

jQuery('#system-selector .custom-combobox').hide();

感谢任何帮助!

1 个答案:

答案 0 :(得分:0)

$(".custom-combobox").hide(100);

这会隐藏您的<span>,包括以下课程 这项工作做得很好。