动态创建jQuery选项卡的html

时间:2015-12-16 18:16:29

标签: javascript jquery html css jquery-ui

我试图通过javascript创建几乎所有的html来编写页面。我想在我的项目中使用jQuery Tabs。内容已创建,但标签未显示。这是一个CSS问题吗?

  .clear{
      clear: both;
      height: 0px;
   }

HTML:

function buildDocument() {

    var tabsContainer = document.getElementById("tabs");

    tabsContainer.innerHTML = "";

    var uList = document.createElement("ul"); 

    var li1 = document.createElement("li");
    var li2 = document.createElement("li");

    li1.innerHTML = '<a href="#tabs-1">One</a>';
    li2.innerHTML = '<a href="#tabs-2">One</a>';

    uList.appendChild(li1);
    uList.appendChild(li2);

    var t1 = document.createElement("div");
    var t2 = document.createElement("div");

    t1.id = "tabs-1";
    t2.id = "tabs-2";

    t1.innerHTML = "Tab1";
    t2.innerHTML = "Tab2";

    tabsContainer.appendChild(uList);
    tabsContainer.appendChild(t1);
    tabsContainer.appendChild(t2);

    $( "#tabs" ).tabs();
}

我在这里从他们的网站下载的jQuery文件(一切都是默认的): http://jqueryui.com/download/

This is what I get

3 个答案:

答案 0 :(得分:1)

您的代码适合我。

我的包括:

<link href="http://code.jquery.com/ui/1.11.3/themes/smoothness/jquery-ui.min.css" rel="stylesheet"/>
<script src="http://code.jquery.com/jquery-1.11.3.js">
<script src="http://code.jquery.com/ui/1.11.3/jquery-ui.js">

function buildDocument() {

  var tabsContainer = document.getElementById("tabs");

  tabsContainer.innerHTML = "";

  var uList = document.createElement("ul");

  var li1 = document.createElement("li");
  var li2 = document.createElement("li");

  li1.innerHTML = '<a href="#tabs-1">One</a>';
  li2.innerHTML = '<a href="#tabs-2">One</a>';

  uList.appendChild(li1);
  uList.appendChild(li2);

  var t1 = document.createElement("div");
  var t2 = document.createElement("div");

  t1.id = "tabs-1";
  t2.id = "tabs-2";

  t1.innerHTML = "Tab1";
  t2.innerHTML = "Tab2";

  tabsContainer.appendChild(uList);
  tabsContainer.appendChild(t1);
  tabsContainer.appendChild(t2);

  $( "#tabs" ).tabs();
}
<link href="http://code.jquery.com/ui/1.11.3/themes/smoothness/jquery-ui.min.css" rel="stylesheet"/>
<script src="http://code.jquery.com/jquery-1.11.3.js"></script>
<script src="http://code.jquery.com/ui/1.11.3/jquery-ui.js"></script>


<body onload="buildDocument();">
<div id="tabs">
</div>
</body>

答案 1 :(得分:0)

jquery-ui.css正确加载? 试试Google托管图书馆

<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.11.4/jquery-ui.min.js"></script>

如果jquery-ui.css正确加载,您应该会看到默认样式。另外,请确保您的HTML以正确的格式呈现为https://jqueryui.com/tabs/

答案 2 :(得分:0)

<强> DEMO

您的代码对我有用。我唯一改变的是:

<script type="text/javascript">
$(function(){
    buildDocument();
})
</script>

而不是<body onload="buildDocument();"&gt;但没有必要。 你必须从正确的URL加载你的jqueryui东西。 查看所有版本的https://code.jquery.com/ui/

  

如果你包含jQuery,为什么不考虑缩短代码   你的功能。

example

function buildDocument() {
    var tabsContainer = $('#tabs');
    tabsContainer.empty();
    var linkOne = '<li><a href="#tabs-1">One</a></li>';
    var linkTwo = '<li><a href="#tabs-2">One</a></li>';
    var t1 ='<div id="tabs-1">Tab1</div>';
    var t2 ='<div id="tabs-2">Tab2</div>';
    tabsContainer.append('<ul>'+linkOne+linkTwo+'</ul>')
    tabsContainer.append('<div>'+t1+t2+'</div>');
    tabsContainer.tabs();
}

你也可以使用数组之类的东西:

var links=["tab-1","tab-2"];
var tabPg=["Tab1","Tab2"];