我正在尝试重新创建select2标记功能,如示例中所示。
https://select2.github.io/examples.html
<select class='equipment' name='equipment' multiple='multiple'>
<option value='Please Select'>Please Select</option>
<option value='1'>Laptop</option>
<option value='2'>Laptop Power Supply</option>
<option value='3'>2nd Laptop Power Supply</option>
<option value='4'>Smartphone</option>
</select>
<script type='text/x-example-code'>
$('.equipment').select2({
tags: true
})
</script>
但它似乎不起作用。我也试过其他的东西,但它似乎没有起作用。 在其他选择框中,我只使用select2来显示搜索框,它可以正常工作。
任何想法?