Make jquery tabs remember selection
问题 I have this jquery code: <script type="text/javascript"> $(document).ready(function() { $(".tabLink").each(function(){ $(this).click(function(){ tabeId = $(this).attr('id'); $(".tabLink").removeClass("activeLink"); $(this).addClass("activeLink"); $(".tabcontent").addClass("hide"); $("#"+tabeId+"-1").removeClass("hide") return false; }); }); }); </script> and this HTML: <div class="tab-box"> <a href="javascript:;" class="tabLink activeLink" id="companyinfo">Company</a> <a href="javascript:;"