最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - DOM appendChild to insert images - Stack Overflow

programmeradmin1浏览0评论

I have this code that creates links.

   /* 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;

I need to add an image to the link, but when I try to add the image code:

<img src="typo3conf/ext/ori_proyectos/res/images/interes.png">

I get:

Link<img src="typo3conf/ext/ori_proyectos/res/images/interes.png">

And not: Link[*_*]

Where [*_*] is the image.

The source code display this:

&lt;img src="typo3conf/ext/ori_proyectos/res/images/interes.png"&gt;

I don't know how to write it.

Thanks.

I have this code that creates links.

   /* 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;

I need to add an image to the link, but when I try to add the image code:

<img src="typo3conf/ext/ori_proyectos/res/images/interes.png">

I get:

Link<img src="typo3conf/ext/ori_proyectos/res/images/interes.png">

And not: Link[*_*]

Where [*_*] is the image.

The source code display this:

&lt;img src="typo3conf/ext/ori_proyectos/res/images/interes.png"&gt;

I don't know how to write it.

Thanks.

Share Improve this question edited Oct 28, 2011 at 17:42 Šime Vidas 186k65 gold badges286 silver badges391 bronze badges asked Oct 28, 2011 at 17:35 MemochipanMemochipan 3,4655 gold badges37 silver badges61 bronze badges
Add a comment  | 

1 Answer 1

Reset to default 39

You should create the image using own DOM methods too:

Something like this:

var DOM_img = document.createElement("img");
DOM_img.src = "typo3conf/ext/ori_proyectos/res/images/interes.png";

DOM_a.appendChild(DOM_img);

A working example here.

发布评论

评论列表(0)

  1. 暂无评论