Difference between revisions of "Template:SJTU-Software/requirementJs"
Ricky chen (Talk | contribs) |
Ricky chen (Talk | contribs) |
||
Line 15: | Line 15: | ||
var id = $(this).attr("href"); | var id = $(this).attr("href"); | ||
$(id).css("display","block"); | $(id).css("display","block"); | ||
+ | var bro = $(this).siblings(); | ||
+ | bro.each(function(){ | ||
+ | id = $(this).attr("href"); | ||
+ | $(id).css("display","none") | ||
+ | }) | ||
} | } |
Revision as of 22:53, 18 September 2015
$(document).ready(function(){ $('area').click(open); $('.am-close').click(close) $('#bronze1').click(function(){ $('#bronze1-4').css("display","block"); }); $('#bronze1-4').click(function(){ $(this).css("display","none") }); });
var open = function(){ var id = $(this).attr("href"); $(id).css("display","block"); var bro = $(this).siblings(); bro.each(function(){ id = $(this).attr("href"); $(id).css("display","none") })
} var close = function(){ $(this).parent().css("display","none"); }