如何将多重属性应用于selectric下拉列表?

时间:2016-10-19 09:31:37

标签: jquery html jquery-selectric

我已为selectric使用了dropdown插件。我在select标记中添加了multiple属性,但它没有正常工作,因为它们已在下面显示 selectric插件的索引页面的链接:http://selectric.js.org/

这就是我的尝试:

<html>
<head>
<link rel="stylesheet" type="text/css" href="selectric.css"  />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="jquery.selectric.js"></script>


</head>
<body>
<select multiple="multiple">
    <option value="">Select Numbers</option>
    <option value='1'>1</option>
    <option value='2'>2</option>
    <option value='3'>3</option>
</select>
 <script>
$('select').selectric();
</script>
</body>
</html>

1 个答案:

答案 0 :(得分:1)

Here您可以找到适合您的示例 我认为你已经在你的项目中包含了坏文件(js或css)。