0

这是我的小提琴 http://jsfiddle.net/LTpL6/

 Code:
    <ul class="tabs_down_link">
        <li ><a style="   padding: 7px 14px;font-size: 16px; color: #000; border-  bottom:1px solid #FFFFFF;"  href="#view_down7">Subject Area-Based Citations</a></li>
                                                                <li ><a    href="#view_down8">Sub-Area Based Citations</a></li>
          </ul>

 <div class="tabcontents_down_link">
  <div id="view_down7" style="line-height:180%; font-size: 14px;font-weight: bold;  color: #808080; ">
                                                                    <input   type="checkbox" />&nbsp;(SciCI)<br/>
                                                                    <input   type="checkbox" />&nbsp;(SS&HCI)<br/>
                                                                    <input  type="checkbox" />&nbsp; (M&HSCI) <br/>
                                                                    <input  type="checkbox" />&nbsp;(LSciCI)<br/>

</div>

  <div id="view_down8" style="font-weight: bold;line-height:180%; font-size: 14px; color: #808080;">
                                                                    <input    type="checkbox" />&nbsp;History Citation Index<br/>
                                                                    <input  type="checkbox"/>&nbsp;Religion Citation Index<br/>
                                                                    <input   type="checkbox" />&nbsp;Biotechnology Citation Index<br/>
                                                                    <input  type="checkbox" />&nbsp;Food Science Citation Index<br/>
                                                                    <input  type="checkbox" />&nbsp;Chemistry Citation Index<br/>
                                                                    <input  type="checkbox" />&nbsp;Mathematics Citation Index<br/>
                                                                    <input  type="checkbox" />&nbsp;Neuroscience Citation Index<br/>
                                                                    <input   type="submit" class="search-butt" style="margin-left: 727px; float: left;"  name="submit_docu" value="Search" /><br/>
                                                                </div>
                                                            </div>

   Jquery
   $(document).ready(function () {
   $('div[id^=view_down]').hide();
   $('#view_down7').show();
   $('.tabs_down_link a').click(function () {
   var tab_id = $(this).attr('href');
   var now = $(this).attr('.tabs_down_link a');
   $('div[id^=view_down]').hide();
   $(tab_id).show(); 
   });
  });

在这里一切正常。

现在有两个标签 1.Subject Area-Based Citations 2.Sub-Area Based Citations

有一个通用 div,用户单击任何特定选项卡上的内容将显示在该通用 div 中,现在它显示正确,但我需要根据单击的选项卡更改选项卡名称。

所以现在默认是基于主题区域的引文选项卡,因此当用户尝试单击基于子区域的引文时,选项卡名称“基于子区域的引文”应自动出现在第一个默认选项卡中。

如何做到这一点,请帮助。

4

1 回答 1

0

您可以使用此交换位置

$(this).before($('div[id^=view_down]'));
于 2013-09-10T03:54:00.080 回答