为啥可选择的项目列表在 Django 中不起作用?
Posted
技术标签:
【中文标题】为啥可选择的项目列表在 Django 中不起作用?【英文标题】:Why selectable list of items doesn't work in Django?为什么可选择的项目列表在 Django 中不起作用? 【发布时间】:2019-05-13 17:47:41 【问题描述】: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】:改变策略,改变 jQuery UI selectable 为 sortable documentation
【讨论】:
以上是关于为啥可选择的项目列表在 Django 中不起作用?的主要内容,如果未能解决你的问题,请参考以下文章
当我将可选参数传递给视图时,为啥我的 CSS 静态文件在 Django 中不起作用?
嵌套的可排序 JQuery 列表在 IE 中不起作用,而在 FF 中起作用
Android - 可扩展列表视图 SetIndicatorBounds 在 Kitkat android-4.4 中不起作用