为什么可选择的项目列表在 Django 中不起作用?
Why selectable list of items doesn't work in Django?
jdango 视图 returns 组件列表和 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;
}
我不知道为什么不行。任何想法 ?
谢谢
更改策略,将jQueryUI可选更改为可排序documentation
jdango 视图 returns 组件列表和 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;
}
我不知道为什么不行。任何想法 ? 谢谢
更改策略,将jQueryUI可选更改为可排序documentation