先把图片控制大小!!
点击后!大小auto!!
再次点击大小还原!!
<script type="text/javascript">$(document).ready(function(){
$("#ck").children('img').click(function(){
if( $("this").hasClass('current')){
$(this).next("ul").removeClass("current")
$("this").css('width',"auto")
$("this").css('height',"auto")
}else{
$(this).addClass("current")
$("this").css('width',"50px")
$("this").css('height',"50px")
}
})
没试过!!你先试下吧!!
我自己没试过,给你个思路,只能帮你到这,HTML编写一个div中间嵌套两个div,一个用来承载图片一个为详细信息,js中jq代码绑定事件,点击图片,显示HTML中写好的div即可。具体的各种方法参照jQuery API