5条回答 默认 最新
一把编程的菜刀 2015-09-23 03:51关注<div class="top">title</div> <div class="left" id="li_left"><iframe src="左边框架的url" width="100" height="300" frameborder="no" border="0" marginwidth="0"marginheight="0" scrolling="no" allowtransparency="yes"></iframe></div> <div class="xianshi" id="sanjiao"></div> <div class="right"><iframe src="右边框架的默认url" name="right" width="700" height="300" frameborder="no" border="0" marginwidth="0"marginheight="0" scrolling="no" allowtransparency="yes"></iframe></div>结构大致如上,你自己编写样式
然后自己用JQ写一个脚本大致如下:
$("#sanjiao").click(function(){ var class_val=$(this).attr("class"); if(class_val=='xianshi'){ $(this).removeClass().addClass("yincang"); $("#li_left").hide(); } else{ $(this).removeClass().addClass("xianshi"); $("#li_left").show(); } });本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
