有谁知道如何使用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>
有人能帮助我吗?
提前致谢。
答案 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