2015-04-23 44 views
1

我嘗試在我的項目中使用mention.js,但它在Angular-strap的模式下效果不佳。這裏是plunker在Angular-strap模式下使用jQuery插件遇到問題

myApp.controller("CreateModalCtrl", function($scope) { 
    $("#members").mention({users: usersInfo}); 
}); 

在主頁中,mention.js效果很好: works

但是,當涉及到模式的網頁,插件不起作用。 not work

此外,plnker無法顯示模態頁面,並且可以將代碼從plnker複製到本地項目。謝謝!

回答

0
myApp.controller("CreateModalCtrl", function($scope) { 
//$("#members").mention({users: usersInfo}); 
setTimeout(function(){ 
     $("#members").mention({users: usersInfo});    
     $scope.$apply();}, 0);}); 

然後它的作品...