最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - angularUI ui-select2 directive not working - Stack Overflow

programmeradmin2浏览0评论

I've been banging my head against the wall with this, so I've reduced it to the bare minimum:

index.html:

<html lang="en" ng-app="myApp">
    <body ng-controller="main">

        <select ui-select2>
            <option>12451</option>
            <option>23435</option>
            <option>3456</option>
        </select>

        <!-- Scripts loaded here. See the plunker -->

    </body>
</html>

app.js:

angular
    .module('myApp', ['ui'])
    .controller('main', function (){});

Here's the link to the Plunker:

I think I'm doing it all right, but it just refuses to initialize the select2.

Here's the error I get:

Object [[object HTMLSelectElement]] has no method 'is'

Here's a screenshot of the error:

What am I doing wrong here?

I've been banging my head against the wall with this, so I've reduced it to the bare minimum:

index.html:

<html lang="en" ng-app="myApp">
    <body ng-controller="main">

        <select ui-select2>
            <option>12451</option>
            <option>23435</option>
            <option>3456</option>
        </select>

        <!-- Scripts loaded here. See the plunker -->

    </body>
</html>

app.js:

angular
    .module('myApp', ['ui'])
    .controller('main', function (){});

Here's the link to the Plunker: http://plnkr.co/edit/kXnHPzBt7apRc7EivLp8?p=preview

I think I'm doing it all right, but it just refuses to initialize the select2.

Here's the error I get:

Object [[object HTMLSelectElement]] has no method 'is'

Here's a screenshot of the error:

What am I doing wrong here?

Share Improve this question edited Mar 28, 2013 at 21:44 j0k 22.8k28 gold badges81 silver badges90 bronze badges asked Dec 18, 2012 at 2:32 MegaHitMegaHit 2,6444 gold badges26 silver badges28 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 11

You need to load jQuery before AngularJS and apparently select2.js before Angular-ui

The following order works fine

<script src="jquery.min.js"></script>          
<script src="select2.js"></script>
<script src="angular.js"></script>  
<script src="angular-ui.js"></script>

Check the plunker: http://plnkr.co/edit/sAGfzmNdykEnqlH40gNf?p=preview


Check this other answer: Angular UI Select2 in the Bootstrap Navigation Bar

发布评论

评论列表(0)

  1. 暂无评论