Fórum [RESOLVIDO] Imagem dentro de DIV javascript #567195
13/07/2013
0
function _GET(name)
{
var url = window.location.search.replace("?", "");
var itens = url.split("&");
for(n in itens)
{
if( itens[n].match(name) )
{
return decodeURIComponent(itens[n].replace(name+"=", ""));
}
}
return null;
}Jonathan
Curtir tópico
+ 0Post mais votado
14/07/2013
Jonathan
Gostei + 1
Mais Posts
14/07/2013
Bill Murry
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
<script type="text/javascript">
function image() {
var img = document.createElement("IMG");
img.src = "img/dir.gif";
document.getElementById('image').appendChild(img);
}
</script>
</head>
<body>
<div id="image"></div>
<div><a href="javascript:image();">click to see image</a></div>
</body>
</html>
Gostei + 0
14/07/2013
Bill Murry
Gostei + 0