我正在使用下面的代码从下拉菜单中选择选项,但是我得到了:

Uncaught TypeError: $(...).selectBox is not a function.


在控制台中。我将使用jquery-selectBox

我的代码:

<script>
    $(document).ready(function() {
        $("SELECT").selectBox();
        $("SELECT").selectBox('settings', {
            'menuTransition': 'fade',
            'menuSpeed': 'fast'
        });
    });
</script>


在body标签中,我得到一个选择字段:

<select class="selectBox">
    <option value="0">Login Type</option>
    <option value="1">Admin</option>
    <option value="2">Customer</option>
</select>


我在代码中包含了所有JavaScript源,但仍然给我错误。有什么办法吗?

最佳答案

为了使用jQuery selectBox,只需将其正确加载到页面上即可(例如via CDN)。



$(document).ready(function() {
  $("select").selectBox();
  $("select").selectBox('settings', {
    'menuTransition': 'fade',
    'menuSpeed': 'fast'
  });
});

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.selectbox/1.2.0/jquery.selectBox.js"></script>

<select class="selectBox">
  <option value="0">Login Type</option>
  <option value="1">Admin</option>
  <option value="2">Customer</option>
</select>





注意

为了更有效地使用标记,在这种情况下,请使用元素的class属性及其值selectBox来使用jQuery选择它,例如:

您的标记:

<select class="selectBox">


通过以下方式选择它:

$(".selectBox").selectBox();

10-05 20:55