1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
| <!DOCTYPE html>
<html>
<head></head>
<body>
<div id="truc">Une div...</div>
<script>
// 1ère solution
s=document.getElementById("truc").style
s.border="3px solid red";
s.backgroundColor="blue";
// 2ème solution
$=function(id) { return document.getElementById(id); };
$("truc").style.border="3px solid green";
$("truc").style.backgroundColor="orange";
// 3ème solution (ne marche pas)
t=document.getElementById;
t("truc").style.border="3px solid navy";
t("truc").style.backgroundColor="pink";
</script>
</body>
</html> |