本文介绍了使用for循环或appendchild属性从后面的代码动态创建div内的多个div?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我创建了一个id为div1的div。我需要在div1中使用for循环或附加子属性添加多个div。请找到问题的解决方案



我尝试过:



I have created a div with id div1. I need to add multiple divs inside div1 using for loop or append child property.Pls find a solution to the problem

What I have tried:

ContentPlaceHolder cph;
            cph = (ContentPlaceHolder)Master.FindControl("MasterContentPlaceHolder");
            if(cph != null)
            {
                HtmlGenericControl div1 = new HtmlGenericControl("div");
                div1.ID = "div1";
                div1.Attributes["class"] = "project-list";
                cph.Controls.Add(div1);                             
            }

推荐答案


这篇关于使用for循环或appendchild属性从后面的代码动态创建div内的多个div?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-29 01:01