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;
}
我不知道为什么不行。任何想法 ? 谢谢。