suchen

Heim  >  Fragen und Antworten  >  Hauptteil

javascript - Kann die mobile Seite die Optionsschaltfläche des mobilen Systems aufrufen?

Kann die mobile Seite den Radiobutton des mobilen Systems aufrufen?

PHPzPHPz2789 Tage vor916

Antworte allen(5)Ich werde antworten

  • 習慣沉默

    習慣沉默2017-05-24 11:38:18

    可以的,不过android与ios的样式不一样,
    最好还是用bootstrap或者自己写样式。

    Antwort
    0
  • 阿神

    阿神2017-05-24 11:38:18

    可以,就直接用select就可以了

    <select>
      <option value ="volvo">Volvo</option>
      <option value ="saab">Saab</option>
      <option value="opel">Opel</option>
      <option value="audi">Audi</option>
    </select>

    Antwort
    0
  • 过去多啦不再A梦

    过去多啦不再A梦2017-05-24 11:38:18

    直接写select标签就是系统默认样式
    但是使用trigger触发select的下拉会有问题
    $('select').trigger('change') 没有效果,
    $('select').trigger('focus') 在IOS有效果, 能触发下拉框, 但是在小米无效.
    最后还是直接用定位 覆盖 然后把select的透明度设为0;

    Antwort
    0
  • 漂亮男人

    漂亮男人2017-05-24 11:38:18

    直接使用select,就会调用系统的自带样式。

    Antwort
    0
  • phpcn_u1582

    phpcn_u15822017-05-24 11:38:18

    <select> 原生的不理想,不同的 系统版本 和 浏览器版本 会有很大差异,建议找一个通用的 ui 库来代替。

    Antwort
    0
  • StornierenAntwort