当不勾选任何一项时,显示所有国家内容;
勾选一项显示一项内容且不同国家内容可以叠加;
取消勾选隐藏其相应内容;
“其他”代表所有不在勾选列表项以外的国家
1、jquery
function check() {
var country = "" ;
$( "[name='checkbox']" ).each(function() {
if ($(this ).attr("checked")) {
country += $( this).val() ;
}
});
$( "#tableID tr").each(function () {
$( this).show();
if (country != "" && country.indexOf( "其他" ) < 0) {
if (country.indexOf($("td:eq(1)" , this).html()) >= 0) {
}
else {
$( this).hide();
}
}
else if (country == "") {
$( this).show();
}
else {
if (country.indexOf($("td:eq(1)" , this).html()) >= 0) {
$( this).show();
}
else if ($("td:eq(1)", this).html() != " 美 " && $( "td:eq(1)", this ).html() != "英 " && $("td:eq(1)", this).html() != " 法 " && $( "td:eq(1)", this ).html() != "德 " && $("td:eq(1)" , this).html() != " 元 " && $("td:eq(1)", this).html() != " 日本" && $( "td:eq(1)", this).html() != " 瑞士" && $( "td:eq(1)", this ).html() != "澳大利 " && $("td:eq(1)" , this).html() != "加拿大" && $("td:eq(1)", this).html() != " 中 ") {
$( this).show();
}
else {
$( this).hide();
}
}
});
$( "#tableID tr:eq(0)" ).show();
}
2、
asp页面
按货币条件查询:
经济数据一览
| 时间 | 国家 | 指标名称 | 重要性 | 前值 | 预测值 | 公布值 |
|---|---|---|---|---|---|---|
| <% =chkIsNull(rs("time" )) %> | <% =chkIsNull(rs("country" )) %> | <% =chkIsNull(rs("ITEM" )) %><% =rs("TableData" ) %> | |
<% =chkIsNull(rs("LAST" )) %> | <% =chkIsNull(rs("PRE" )) %> | <% =chkIsNull(setImg(rs("Now" ))) %> |
| 评论 |
|
|