jQuery Chosen plugin without search field

前端 未结 12 875
时光说笑
时光说笑 2021-02-05 02:45

Not sure if this has been covered somewhere, but I couldn\'t find it in the documentation, and was wondering if it\'d be possible to not include the search input box with the jQ

12条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-05 03:10

    I add a class to my stylesheet.

    .chzn-select { display: none }
    

    Alternatively, for individual elements, I specify the element and append _chzn to target it.

    #element_chzn .chzn-select { display: none; }
    

    Note that: chosen will convert hyphens in your element ids and classes to underscores, so to target element-id you need.

    #element_id_chzn .chzn-select { display: none; }
    

提交回复
热议问题