我正在按下按钮创建图像。我在Chrome中运行时会生成图像,但我无法在Firefox或IE中显示任何内容。我已经看到这个问题在线问其他地方,但没有任何运气让我为我工作。
按钮HTML:
<input type="radio" class="button" name="button" onclick="createImageRoof();" id="button1"/>
JS:
function createImageRoof()
{
alert("In Function")
var floatingImage1= document.getElementById('floatingImage1');
var i1 = document.createElement("img");
i1.src = "Images\\tnR1.png";
i1.type = "image";
floatingImage1.appendChild(i1);
}
答案 0 :(得分:1)
将文件路径目录分隔符更改为正斜杠(/)对我有用。
所以:i1.src = "Images/tnR1.png";