7
我有創建鏈接的代碼。DOM appendChild插入圖像
/* Create a link to activate the tab */
DOM_a = document.createElement("a");
DOM_a.appendChild(document.createTextNode(t.headingText));
DOM_a.href = "javascript:void(null);";
DOM_a.title = t.headingText;
DOM_a.onclick = this.navClick;
我需要的圖像添加到鏈接,但是當我嘗試添加圖像代碼:
<img src="typo3conf/ext/ori_proyectos/res/images/interes.png">
我得到:
Link<img src="typo3conf/ext/ori_proyectos/res/images/interes.png">
而不是: Link[*_*]
其中[*_*]
是圖像。
的源代碼顯示此:
<img src="typo3conf/ext/ori_proyectos/res/images/interes.png">
我不知道怎麼寫。
謝謝。
謝謝,它的工作!在10分鐘內我會選擇你的答案。你現在爲什麼<改爲<? – Memochipan
@Memochipan您從源創建了一個文本節點。文本節點不包含任何HTML元素,因此'<'等被HTML實體('<'等)取代。 –