JavaScript-Code „;“."/> JavaScript-Code „;“.">
Heim > Artikel > Backend-Entwicklung > Was ist die Methode für PHP, um js aufzurufen?
Empfohlen: „PHP-Video-Tutorial“
PHP ruft JS auf
Werte: Anzeige: Werte;
<html> <body> <script type="text/javascript"> var str = 'values'; </script> <?php echo "<script type=text/javascript>document.write(str)</script>"; ?> </body> </html>
Funktion (Methode) aufrufen Popup-Fenster: 9
<html> <body> <script type="text/javascript"> function add(){ var x = 0; x = x + 9; alert(x); } </script> <?php echo "<script type=text/javascript>add()</script>"; ?> </body> </html>
Verwandte Empfehlungen: php-Training
Das obige ist der detaillierte Inhalt vonWas ist die Methode für PHP, um js aufzurufen?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!