动态标签的奇怪行为

时间:2014-10-30 08:17:37

标签: javascript jquery html

我有一个动态标签,其中我想在第一次点击时显示HTML DIV.Now我能够在动态标签中看到HTML DIV。但是如果关闭一次并通过单击超链接再次重新打开意味着打开此Tab,我这次不会得到它..我不知道这里发生了什么......

这是代码..

       function addTab(title) {
        if ($('#tt').tabs('exists', title)) {
            $('#tt').tabs('select', title);
        } else {

            if (title == "Check in List") {

                var content = $("#checkinuserform");

            }
            else {

                var content = '<p>Hii</p>';

            }

            $('#tt').tabs('add', {
                title: title,
                content: content,
                closable: true
            });
        }
    }

在代码checkinuserform中是HTML DIV id .. 请帮帮我..谢谢..

1 个答案:

答案 0 :(得分:1)

你是否试图克隆div:

var content = $("#checkinuserform").clone();