2015-10-04 49 views

回答

1

为了让你plunker工作:

  • 添加jQuery和jQueryUI的作为依赖
  • 添加ui.sortable作为一个模块依赖:

    angular.module('myApp', ['ui.sortable']); 
    
  • 替换:

    <ul ui-sortable ng-model="deals.numer"> 
    

    用:

    <ul ui-sortable ng-model="list"> 
    

plunker

+0

非常感谢你 –