English 中文(简体)
我用javascript生成了html代码(碎片)。 现在,我想找到与GetElement公司一起产生的零件。 ById
原标题:I generated html code (lots of divs) with javascript. Now I want to find the generated divs with GetElementById

基本要素 a 如果我用人工方式在体内添加“iv”和“窗户”并使用“窗户” = 纸面中的惯用方法。 大量工程。

但是,如果我利用 lo来生产奶粉1 2、3等。 我可以这样做。 是否有办法让那些产生干s的人去做?

这是产生《html法典》的内容(必须明确我的含义):

for(i=0; i<randomizeColoursList.length; i++)
{
    document.getElementById("renderColors").innerHTML += 
         <div class="box"><div class="  + i +  "><font color="  
        + randomizeColoursList[i] +  ">  
        + "" +  <img src="dist/card_bg.gif"></div></div> ;                    
}   

其中一项:

<div class="8"><font color="#3be6c4"><img src="dist/card_bg.gif"></font></div>

与第8类不同的是,我想要获得的坦率。 但据说这是无效的。

感谢。

最佳回答

<>t>id 是null,因为您在打上了标识。 看你重新指定<代码>id 改为:

问题回答

更像这一点:

<div id="div1" class="8"><font color="#3be6c4"><img src="dist/card_bg.gif"></font></div> 

而且,你不需要使用字塔,也不应使用。 仅增加四肢残。

<div id="div1" class="8" style="color:#3be6c4;"><img src="dist/card_bg.gif"></div> 

你们回头来的路差不多。 如果你写像我下面那样的法典,那么你就不需要提供红新月的身份证,那么,你最后要提到这些证件。

var i, div, img;
var createdDivs = [];
for(i=0; i<randomizeColoursList.length; i++)
{
    div = document.createElement( div );
    img = document.createElement( img );
    div.className = "box";
    div.style.backgroundColor = randomizeColoursList[i];
    div.style.color = randomizeColoursList[i];
    img.src = "dist/card_bg.gif"

    div.appendChild(img);
    document.getElementById("renderColours").appendChild(div);                

    createdDivs.push(div);
}  

Livelink: http://jsfiddle.net/7HjL/





相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签