2

有一个标准的 JQuery 手风琴和一个标准的表格。但是在手风琴中,没有任何选择菜单出现在任何浏览器中。

搜索和搜索..似乎无法找到解决方案。其他一切都很好..只是没有出现简单的选择。

当我使用 FireBug(或任何其他检查工具)查看 HTML 输出时,选择菜单的 HTML 就在那里......它们看起来很好。他们也在手风琴之外工作。

有什么建议么?

<h4>Contact Information</h4>
<div>
   <p>
      <input name="address_1" type="text" required="required" id="clientInfoForm_address_1" form="clientInfoForm" placeholder="Address 1 - REQUIRED" tabindex="80" size="40" maxlength="253"><br>
      <input name="address_2" type="text" id="clientInfoForm_address_2" form="clientInfoForm" placeholder="Address 2" tabindex="90" size="40" maxlength="253"><br>
      <input name="address_3" type="text" id="clientInfoForm_address_3" form="clientInfoForm" placeholder="Address 3" tabindex="100" size="40" maxlength="253">
      <br>
      <input name="city" type="text" required="required" id="city" form="clientInfoForm" placeholder="City - REQUIRED" tabindex="110" maxlength="253">
      <select>
             <option value="" selected>State</option>
             <option value="AL">Alabama</option>
             <option value="AK">Alaska</option>
             <option value="AZ">Arizona</option>
             <option value="AR">Arkansas</option>
             ... 
      </select>
</div>

标准的东西..输入文本字段看起来不错,just no SELECT.

4

1 回答 1

0

我最终发现这与打开时下拉菜单中使用的 ui 的默认 z-index 有关:

  .ui-front {
    z-index: 100;
 }
于 2014-12-24T06:09:36.203 回答