为什么可选项目列表在Django中不起作用?

时间:2018-12-12 15:19:19

标签: javascript django jquery-ui jquery-ui-selectable

jdango视图返回组件列表,并且li项目包含保存在{{ component.html }}变量中的html代码。

html文件:

<ol id="app_components">
  {% for component in components %}
    <li id="{{ component.id }}" class="component">
    {{ component.html|safe }}
    </li>
  {% endfor %}
</ol>

js文件:

$( "#app_components" ).selectable();

css文件:

.ui-selecting {
  background: grey;
}
.ui-selected {
  background: blue;
}

我不知道为什么不行。任何想法 ? 谢谢。

1 个答案:

答案 0 :(得分:0)

更改策略,将jQuery UI可选择为可排序的documentation