Cette fois je vais vous montrer comment jQuery calcule la largeur et la hauteur de la fenêtre iframe. Quelles sont les précautions pour que jQuery calcule la largeur et la hauteur de la fenêtre iframe. Voici un cas pratique, jetons un coup d'oeil.
<iframe id="aaax" src="" scrolling="no" frameborder="0" style=" display :none"></iframe> <script language=" javascript " type="text/javascript"> $(function () { var $main = $("#main").height(); var $searchPanel = $("#searchPanel").height(); var $listArea = $("#listArea").height(); $("#aaax").height($(window).height() - $main - $searchPanel - $listArea + 180); var $aaax = $("#aaax").height(); if ($aaax < 282) { $("#aaax").height(300); } else { $("#aaax").height($(window).height() - $main - $searchPanel - $listArea + 180); } var $chartArea = $("#chartArea").width(); var $chartAreaLeft = $(".chartAreaLeft").width(); $("#aaax").width($chartArea - $chartAreaLeft - 10); var $aaaxWidth = $("#aaax").width(); if ($aaaxWidth < 597) { $("#aaax").width(500); } else { $("#aaax").width($chartArea - $chartAreaLeft - 10); } }); </script>
Je pense que vous maîtrisez la méthode après avoir lu le cas dans cet article. Pour des informations plus intéressantes, veuillez prêter attention aux autres articles connexes sur le site Web chinois de php !
Lecture recommandée :
Méthode DOM d'opération inter-domaines JQuery dans iframe
JSONP résout le problème inter-domaines ajax ( avec code)
méthode d'implémentation php+jquery pour transmettre les données json
Ce qui précède est le contenu détaillé de. pour plus d'informations, suivez d'autres articles connexes sur le site Web de PHP en chinois!