我的html页面中有2个选择选项。
我使用JQuery使用下面的代码
格式化一个Select选项$('select').wSelect();
但由于这个原因,其他选择选项也会受到相同格式的影响。
我不希望在第二个选择选项上应用JQuery。
你能告诉我怎么做吗?
答案 0 :(得分:4)
将ID提供给您的选择!
<select id="sel1">
然后是jQuery
$("#sel1").wSelect();
答案 1 :(得分:2)
将您要select
的格式设置为类名,然后
$('select.wSelect').wSelect();
并在html中:
<select class="wSelect">
...
</select>
现在,向前移动将类wSelect
应用于要应用特定格式的所有select
节点。
答案 2 :(得分:0)
试试这个
为id
指定select
等唯一属性,如下所示
<select id="sel">
和你的代码
$('select#sel ').wSelect();