嗨,我正在使用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

最佳答案

我可能已经晚了,但是您应该在添加新菜单后尝试再次调用smartWizard函数。

关于jquery - 为smartwizard 2.0动态添加子菜单,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10518322/

10-10 00:19