0

我的 html 页面中有 2 个选择选项。

我使用 JQuery 使用以下代码格式化一个 Select 选项

$('select').wSelect();

但正因为如此,其他选择选项也会受到相同格式的影响。

我不希望将 JQuery 应用于第二个选择选项。

你能告诉我怎么做吗?

4

3 回答 3

4

给你的选择ID!

<select id="sel1">

然后是 jQuery

$("#sel1").wSelect();
于 2013-10-03T17:50:31.373 回答
2

Give your select you want to apply the formatting a class name, and then

$('select.wSelect').wSelect();

and in html:

<select class="wSelect">
   ...
</select>

So now, moving forward apply the class wSelect to all the select nodes which you want to apply the specific formatting to.

于 2013-10-03T17:50:28.737 回答
0

尝试这个

指定一个独特的属性idselect如下所示

<select id="sel">

和你的代码

$('select#sel ').wSelect();
于 2013-10-03T17:50:57.313 回答