通过javascript加载div中的页面

时间:2012-07-13 07:37:15

标签: javascript image load var

当然这个问题已被多次询问,但我需要做以下事情

<script language="javascript">
var one = 888;
var two = 122;
var three = "ABC";
</script>

我需要发送它们并在DIV中返回数据(它将是一个图像)

我不会使用jQUERY或任何其他插件

http://www.example.com/yes?one=888&two=122&three=ABC

2 个答案:

答案 0 :(得分:0)

答案 1 :(得分:0)

我不确定你到底想做什么。这会将图像的src设置为您要求的内容并将其添加到div。

img = new Image();
img.src = 'http://www.example.com/yes?one=' + one + '&two=' + two + '&three=' + three;
document.querySelectorAll('#idOfDiv').appendChild(img)