为smartwizard 2.0动态添加子菜单

时间:2012-05-09 14:38:50

标签: jquery jquery-plugins smart-wizard

您好我使用的是smartwizard 2.0插件,我想知道是否有人可以帮助我。

基本上我想在用户点击某个按钮时动态添加一个菜单。我已经给出了以下代码。

function add_submenu() {
        var ulid = document.getElementById("ulsub1");
        var newli = document.createElement("li");

        newli.innerHTML = "<a href=\"#step-7\" class=\"done\" isdone=\"1\" rel=\"7\"><label class=\"stepNumber\">7</label><span class=\"stepDesc\">Dy Coupon<br /></span></a>";
        ulid.appendChild(newli);

        var maintab = document.getElementById("stpContainer");
        var newdiv = document.createElement("div");
        newdiv.setAttribute('id', 'step-7');
        newdiv.setAttribute('class', 'content');
        newdiv.setAttribute('style', 'display: block;');
        newdiv.innerHTML = "<h2 class=\"StepTitle\">Dynamic Coupon</h2><table cellspacing=\"3\" cellpadding=\"3\" align=\"center\"><tr><td align=\"center\" colspan=\"3\">&nbsp;</td></tr><tr><td align=\"right\">Hello Name :</td><td align=\"left\"><input type=\"text\" id=\"coupon-8\" name=\"Coupon Name\" class=\"txtBox\"></td><td align=\"left\"><span id=\"msg_firstname\"></span>&nbsp;</td></tr></table>";
        maintab.appendChild(newdiv);
}

我面临的问题是添加的菜单根据功能不起作用。

非常感谢任何帮助。

你可以在这个网站上找到smartwizard 2.0 http://techlaboratory.net/products.php?product=smartwizard&action=2

1 个答案:

答案 0 :(得分:0)

我可能会迟到但你应该在添加新菜单后再次尝试调用smartWizard功能。