Jquery选项卡不能在php循环中工作

时间:2016-01-15 14:18:03

标签: php jquery

我试图在jquery选项卡代码中循环但不工作我正在使用这个插件https://jqueryui.com/tabs/它不能在循环中工作我做错了什么?

  <link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
  <script src="//code.jquery.com/jquery-1.10.2.js"></script>
  <script src="//code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
  <link rel="stylesheet" href="/resources/demos/style.css">
  <script>
  $(function() {
    $( "#tabs" ).tabs();
  });
  </script>

  <div id="tabs">
  <ul>
  <?php
  $camps=20;
 for($i=1; $i<=$camps; $i++) 
    {
    echo '<a href="#tabs-' .$i . '" id="titleee">Campaign ' . $i . '</a>';
    }

  ?>
    </ul>

   <?php
   $camps1=20;
    for($i1=1; $i1<=$camps1; $i1++) 
   {
     echo '<div id="tabs-'.$i1.'">';  
     echo $i1;  
     echo '</div>';
   }
   ?>
  </div>

1 个答案:

答案 0 :(得分:2)

在这种情况下,ID不需要是唯一的,以使标签工作。问题是你没有用netsh wlan show profile name="Your profile name" 元素包裹netsh wlan set profileparameter name="Your profile name" cost=Unrestricted netsh wlan set profileparameter name="Your profile name" cost=Fixed 标记。尝试使用a元素包装第一个循环选项卡:

li

DEMO具有相同的身份

但是,嘿,当然你需要使ID唯一。:)