L'exemple de cet article décrit la méthode JS pour obtenir les attributs marginHeight et marginWidth dans une iframe. Partagez-le avec tout le monde pour votre référence. Les détails sont les suivants :
<!DOCTYPE html> <html> <body> <iframe id="myframe" src="demo_iframe.htm" marginheight="50" marginwidth="50"> <p>Your browser does not support iframes.</p> </iframe> <br><br> <p>The value of the marginheight attribute and marginwidth are: <script> document.write(document.getElementById("myframe").marginHeight); document.write(document.getElementById("myframe").marginWidth); </script> <p> </body> </html>
J'espère que cet article sera utile à la conception de la programmation JavaScript de chacun.