简体   繁体   中英

Tab Bootstrap : How to include a dynamic field

In my code I have for example 4 boostrap tab. In the 2nd tab I want to create a new fields : eg : field33

How to insert a dynamic code in php inside the tab selected by a module called.

Do you know something can do that. I write a files (inside the datas for tab2) and the tab2 display the datas of file (field33).

Tk

 <div>
      <ul class="nav nav-tabs" role="tablist"  id="myTab">
        <li class="nav-item"><?php echo '<a href="#tab1" role="tab" data-toggle="tab" class="nav-link active">' .  TAB_GENERAL . '</a>'; ?></a></li>
        <li class="nav-item"><?php echo '<a href="#tab2" role="tab" data-toggle="tab" class="nav-link">' .  TAB_DESC . '</a>'; ?></a></li>
        <li class="nav-item"><?php echo '<a href="#tab3" role="tab" data-toggle="tab" class="nav-link">' .  TAB_REF . '</a>'; ?></a></li>
        <li class="nav-item"><?php echo '<a href="#tab4" role="tab" data-toggle="tab" class="nav-link">' .  TAB_IMG . '</a>'; ?></a></li>
      </ul>
      <div>
        <div class="tab-content">
         <div class="tab-pane active" id="tab1">
            fields1
            fields2
         </div>
          <div class="tab-pane" id="tab2">
            fields3
            fields4
         </div>
          <div class="tab-pane" id="tab3">
            fields5
            fields6
         </div>
          <div class="tab-pane" id="tab4">
            fields6
            fields7
         </div>
       </div>

我认为您需要使用Jquery,Ajax和JSON

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM