Accès aux fonctions JavaScript dans un iFrame à partir de la page parent
Pour appeler du code JavaScript dans un iframe à partir de la page parent, identifiez d'abord l'iFrame ID, tel que "targetFrame", et la fonction à appeler dans l'iframe, telle que "targetFunction()."
Accès à l'iframe :
Exemple :
// Target the iframe with ID "targetFrame" const iframe = document.getElementById('targetFrame'); // Get the window object of the iframe const iframeWindow = iframe.contentWindow; // Invoke the "targetFunction()" function within the iframe iframeWindow.targetFunction();
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!