先把图片控制大小!!
点击后!大小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")
}
})
没试过!!你先试下吧!!