Bonjour,
Je n'arrive pas à faire apparaître une image dans une fenêtre pop-up alors que ça marche sans problème dans la fenêtre principale. Je travaille avec Firefox 56.0.1
Merci de votre aide.
Modifié par dix_de_der (26 Oct 2017 - 23:23)
Je n'arrive pas à faire apparaître une image dans une fenêtre pop-up alors que ça marche sans problème dans la fenêtre principale. Je travaille avec Firefox 56.0.1
Merci de votre aide.
<!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>pop-up + image</title>
<script type="text/javascript">
function show() {
// image dans fenêtre principale : ça marche
var oDiv = document.getElementById('div1') ;
var oImg = document.createElement('img') ;
oImg.src = "cats.png" ;
oDiv.appendChild(oImg) ;
// création de la pop-up : ça marche
var options = "width=400, height=400 ,top=100, left=100" ;
var win = window.open("", "", options);
win.parent.document.title = "Pop-up" ;
var oBody = document.createElement('body') ;
win.document.body = oBody ;
var oDiv = document.createElement('div') ;
oBody.appendChild(oDiv) ;
// image dans la pop-up : l'image n'apparaît pas
var oImg = document.createElement('img') ;
oImg.src = "cats.png" ;
oDiv.appendChild(oImg) ;
}
</script>
</head>
<body onload="show()">
<div id="div1"></div>
</body>
</html>
Modifié par dix_de_der (26 Oct 2017 - 23:23)