我的 html 页面中有 2 个选择选项。
我使用 JQuery 使用以下代码格式化一个 Select 选项
$('select').wSelect();
但正因为如此,其他选择选项也会受到相同格式的影响。
我不希望将 JQuery 应用于第二个选择选项。
你能告诉我怎么做吗?
我的 html 页面中有 2 个选择选项。
我使用 JQuery 使用以下代码格式化一个 Select 选项
$('select').wSelect();
但正因为如此,其他选择选项也会受到相同格式的影响。
我不希望将 JQuery 应用于第二个选择选项。
你能告诉我怎么做吗?
给你的选择ID!
<select id="sel1">
然后是 jQuery
$("#sel1").wSelect();
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.
尝试这个
指定一个独特的属性id
,select
如下所示
<select id="sel">
和你的代码
$('select#sel ').wSelect();