答案 0 :(得分:0)
请看this example。
其余的只是用CSS定位你的网格容器。
答案 1 :(得分:0)
添加假选择框。
<div class="box">here</div>
添加了一些基本的js:
$('.box').click(function(){
$('table').show();
});
$('table input').click(function(){
$('.box').html( $(this).clone() );
$('table').hide();
});
使用CSS,默认隐藏表格:
table{display:none}
您可以添加一些CSS或JS来动态地将表格放在假选择下面。