正如 Jessegavin 所说(在这里找到)
您可以使用 Javascript DOM API。特别是,查看 createElement() 方法。
您可以创建一个可重用的函数,该函数将创建一个像这样的图像......
function show_image(src, width, height, alt) {
var img = document.createElement("img");
img.src = src;
img.width = width;
img.height = height;
img.alt = alt;
// This next line will just add it to the <body> tag
document.body.appendChild(img);
}
然后你可以像这样使用它......
<button onclick="show_image('http://google.com/images/logo.gif',
276,110, 'Google Logo");'>Add Google Logo</button>
上面不应该有换行符,我添加了它以便它可以在不滚动的情况下显示查看 jsFiddle 上的工作示例:http:
//jsfiddle.net/Bc6Et/
这应该回答你的问题