使用来自servlet响应的javascript显示图像

时间:2015-12-23 02:16:05

标签: javascript java servlets

我正在尝试使用此JS代码显示横幅广告

#container3 label {
    background: #f0f none repeat scroll 0 0;
}
#container3 label:nth-of-type(1) {
    background: #ff0 none repeat scroll 0 0;
}
#container3 label:nth-of-type(2) {
    background: #f00 none repeat scroll 0 0;
}

http://localhost:8080/Adserver/adserver”是一个servlet代码,它将图像url作为响应。但我仍然无法渲染图像。

有什么建议吗?

1 个答案:

答案 0 :(得分:5)

我认为您错过了图片src的结束语:

document.write('<div><span><script type="text/javascript" src="http://localhost:8080/Adserver/adserver?id=' + pubcode +'"><\/script></span></div>');