情報開示:私はBOBのメンテナーです。
このプロセスをBOBと呼ばれるはるかに簡単にするJavaScriptライブラリがあります。
あなたの具体的な例について:
<div><img src="the url" />the name</div>
これは、次のコードによってBOBで生成できます。
new BOB("div").insert("img",{"src":"the url"}).up().content("the name").toString()
//=> "<div><img src="the url" />the name</div>"
または短い構文で
new BOB("div").i("img",{"src":"the url"}).up().co("the name").s()
//=> "<div><img src="the url" />the name</div>"
このライブラリは非常に強力であり、データ挿入(d3と同様)を伴う非常に複雑な構造を作成するために使用できます。例:
data = [1,2,3,4,5,6,7]
new BOB("div").i("ul#count").do(data).i("li.number").co(BOB.d).up().up().a("a",{"href": "www.google.com"}).s()
//=> "<div><ul id="count"><li class="number">1</li><li class="number">2</li><li class="number">3</li><li class="number">4</li><li class="number">5</li><li class="number">6</li><li class="number">7</li></ul></div><a href="www.google.com"></a>"
BOBは現在、DOMへのデータの挿入をサポートしていません。これはtodolistにあります。現時点では、出力を通常のJSまたはjQueryと一緒に使用して、好きな場所に配置できます。
document.getElementById("parent").innerHTML = new BOB("div").insert("img",{"src":"the url"}).up().content("the name").s();
//Or jquery:
$("#parent").append(new BOB("div").insert("img",{"src":"the url"}).up().content("the name").s());
このライブラリを作成したのは、jqueryやd3のような代替手段に満足できなかったためです。コードが非常に複雑で読みにくい。私の意見では、BOBでの作業は明らかに偏っています。
BOBはBowerで利用できるので、を実行して取得できますbower install BOB
。