我已为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>