如何在下拉菜单中放置网格

时间:2011-12-08 19:29:23

标签: html grid drop-down-menu

我有一些像jsfiddle代码中可以看到的按钮网格。我想要的是从下拉菜单中显示的网格,如本例here中所示。有谁知道如何将我的网格链接到示例中的下拉菜单中?

jsfiddle中的

代码是here

2 个答案:

答案 0 :(得分:0)

请看this example

其余的只是用CSS定位你的网格容器。

答案 1 :(得分:0)

Here is a working example

添加假选择框。

<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来动态地将表格放在假选择下面。