我在做数据结果展示的时候,想要实现一个如下的功能: 用户可以选择一个时间段,默认显示这个时间段的汇总数据,当鼠标点击这个时间段的时候,将显示每个时间点的详细数据,再次点击的时候,详细数据收起,只显示汇总信息. 功能是不是很简单?对于javascript高手和熟手来说很简单了,不过对于我这个新人来说,还是搞了好一会儿才弄好.下面show一下我的代码,希望js高手能指点一二: <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitio…
在mysql中如果想要查看表的定义的话:有如下方式可供选择 1.show create table 语句: show create table table_name; 2.desc table_name 语句: create table person( id int not null auto_increment primary key, name varchar(8), index ix__person__name (name)); desc person; +-------+--------…
在mysql中如果想要查看表的定义的话:有如下方式可供选择 1.show create table 语句: show create table table_name; 2.desc table_name 语句: create table person( id int not null auto_increment primary key, name ), index ix__person__name (name)); desc person; +-------+------------+----…