日期:2014-05-17 浏览次数:20493 次
<!DOCTYPE HTML>
<html>
<head>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js"></script>
<!--定义一个聚焦的css样式-->
<style type="text/css">
.focus{background:#f00;color:#fff};
</style>
<script type="text/javascript">
$(function(){
$("a").click(function(){
//先把原有的聚焦项的class的移除掉
$(".focus").removeClass("focus");
//再当前选项上加上css样式
$(this).addClass("focus");
})
})
</script>
</head>
<body>
<a href="#">item1</a>
<a href="#">item2</a>
<a href="#">item3</a>
<a href="#">item4</a>
<a href="#">item5</a>
<a href="#">item6</a>
</body>
</html>
String sqlStr="select * from table where 1=1";
if(!string.IsNullOrEmpty("版型条件"))//如果为空则为不限,即sql不拼接
{
sqlStr+="and 版型字段=?";
}
if(!string.IsNullOrEmpty("款式条件"))
{
sqlStr+="and 款式字段=?";
}
if(!string.IsNullOrEmpty("季节条件"))
{
sqlStr+="and 季节字段=?";
}