使用document.write(“

时间:2013-09-17 16:15:06

标签: javascript xml arrays document.write

我被卡住了,一些帮助会非常感激......

我正在使用xml像一个迷你数据库,我有php从xml文件创建一个图像数组,这一切都很好。我想使用其中一些图像作为这个漂亮的jquery zoom thingy>的一部分。 http://www.elevateweb.co.uk/image-zoom/examples

这是我在的地方:

document.write("<img id='zoom_01' src=" + "../../shop/e20_portal/" + imagelist_s_array[0] + "' data-zoom-image='../../shop/e20_portal/" + imagelist_l_array[0] + "'/>");

这两个都正确地吐出了正确的网址,EG:'e20_s.jpg',但上面的代码不起作用。

imagelist_s_array[0]
imagelist_l_array[0]

1 个答案:

答案 0 :(得分:0)

  

如果我在document.write中手动输入url它可以正常工作。

     

如果我输入'../../shop/e20_portal/e20_l.jpg'就行了。如果我在浏览器中输入完整内容,图像会显示,是的

     

可能存在“而不是”某个地方的问题。