我想使用javascript在html页面中创建一些颜色选择器。
到现在为止我使用的是.hide/.show
,但我认为最好只创建我需要的表,对吗?
另外我在另一个html文件中有表格,所以我使用{% include %}
标签,但我不需要。
我的html
模板:
...
<div id='color_table'>
</div>
...
我的script-jquery.js
:
function show_color_tables(num, colors) {
for (var i=0; i<num; i++) {
//var node = document.createTextNode("{% include 'banner/_colortable.html' with table='"+i+"' color='"+colors+"' %}");
//document.getElementById('color_table').appendChild(node);
//document.getElementById('color_table').innerHTML = "<iframe></iframe>";
//document.getElementById('color_table').firstChild.contentWindow.document.write("{% include 'banner/_colortable.html' with table='"+i+"' color='"+colors+"' %}");
var node = "{% include 'banner/_colortable.html' with table='"+i+"' color='"+colors+"' %}";
$('#color_table').html(node);
};
};
这写在屏幕上:
{% include 'banner/_colortable.html' with table='0' color='Tutti' %}
但不要从_colortable.html
提前致谢