gpt4 book ai didi

javascript - div.appendChild().appendChild()

转载 作者:行者123 更新时间:2023-11-29 18:29:08 26 4
gpt4 key购买 nike

从逻辑上讲,我想在 div 的链接中嵌入图像。我已经使用链接或图像成功完成了此操作。为了我的目的,我什至并行地使用了链接和图像(这是无用的)。但似乎无法将图像包裹在 div 内的链接中。

var div = OpenLayers.Util.createDiv();
var img = OpenLayers.Util.createImage(null, null, null, null, null, null, null, delayDisplay);
img.className = "olAlphaImg";
img.alt = altText;

var link = document.createElement("a");
// link.setAttribute("href", "#");
link.href="#" + altText;
link.appendChild(img);

div.appendChild(link);

OpenLayers.Util.modifyAlphaImageDiv(div, id, px, sz, imgURL, position, border, sizing, opacity, altText);

return div;

这是我试图确保键盘导航的 OpenLayers。我只是不确定如何使用 javascript 执行此操作,并且所有示例仅使用一个 appendChild 引用。我试过 innerHTML() 但我没有使用字符串,所以这似乎没有用。

最佳答案

什么意思

can't seem to have the image wrapped in a link inside a div

您遇到过任何错误吗?

我可能误解了你的问题,但如果没有,你的代码应该可以工作。

这是我的例子:a working jsfiddle 将图像包装到某个容器的链接中。

var img = document.createElement('img');
img.src = 'https://www.google.fr/images/srpr/logo3w.png';

var anchor = document.createElement('a');
anchor.href = 'http://google.com';

// Wrap image in the link (anchor):
anchor.appendChild(img);
// Insert the anchor into container:
document.getElementById('container').appendChild(anchor);

关于javascript - div.appendChild().appendChild(),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10028981/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com