使用vbscript将图像元素添加到td

时间:2010-02-09 16:07:02

标签: html vbscript

有谁知道如何使用vbscript在td元素上添加图像? 我需要添加一个“img”元素,而不是背景图像,它必须是vbscript。

<script type="text/vbscript">
function onload()
'//Add Image to td1
end function
<script>
<table>
<tr>
<td id="td1"></td>
</tr>
</table>

有人能帮助我吗?

提前致谢。

1 个答案:

答案 0 :(得分:2)

您只需使用DOM执行此操作,就像在JavaScript中一样。

Function onload()
    Dim img

    Set img = document.createElement("img")
    img.src = "http://www.google.com/intl/en_ALL/images/logo.gif"

    document.getElementById("td1").appendChild img
End Function