简单的方式样式选择框使用jQuery

简单的方式样式选择框使用jQuery

本文介绍了简单的方式样式选择框使用jQuery的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有没有任何简单的方法使用jQuery在表单中的选择框中添加样式?

Is there any easy way to add a style to a select box in a form using jQuery?

<select>
  <option>sample</option>
  <option>sample1</option>
</select>

谢谢。

推荐答案

请查看。它将为样式选择框,也可以使用Ajax来即时获取数据。

Check out Select2. It will style a select box and can also use Ajax to get data on the fly.

$(selector).select2();

这篇关于简单的方式样式选择框使用jQuery的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-06 00:53