DIV 想要实现滚动条的效果其实很简单,只要给指定 DIV 添加一个 overflow 且给 DIV 以指定的高度就可以了,看如下的代码:
<div style="position:absolute; height:400px; overflow:auto"></div>
当然这样测试是显示不出来效果的,还要在DIV中添加文字或图片,当 DIV 撑起来的时候就显示出效果了,下面再看一下 DIV 样式里面各项的参数。
div 设置滚动条显示:overflow :yes
div 设置滚动条自适...
添加搜索条件,按品牌搜索,按分类名搜索,方法如下:
打开search.php
搜索下面代码:
[code lang="php"]
$keywords .= "(goods_name LIKE '%$val%' OR goods_sn LIKE '%$val%' OR keywords LIKE '%$val%' $sc_dsad)";
[/code]
将上面代码替换为:
[code lang="php"]
$keywords .= "(goods_name LIKE '%$val%' OR cat_name LIKE '%$val%' OR brand_name LIKE '%$val%' OR goods_sn LIKE '%$...