"."/> ".">
Heim > Artikel > Backend-Entwicklung > Was soll ich tun, wenn PHP CSS nicht aufrufen kann?
php kann CSS nicht aufrufen, da href ein relativer Pfad ist. Die Codeanweisung lautet „bd523e4d26d69db3d046903a2f6a02ce".
Empfohlen: „PHP-Video-Tutorial“
PHP zur Einführung eines CSS-Problems verwenden
href ist ein relativer Pfad und STATIC ist zugänglich, um das Problem zu lösen
<html> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <link rel="stylesheet" href="__STATIC__/bs/css/bootstrap.min.css"> <script src="__STATIC__/bs/js/jquery.min.js"></script> <script src="__STATIC__/bs/js/bootstrap.min.js"></script> <title>Document</title> </head> <body> </body> </html>
Sehen Sie sich den Quellcode im Browser an :
|| | | | | | | | | | | | | | | | | | | | | | | | | | |
Das obige ist der detaillierte Inhalt vonWas soll ich tun, wenn PHP CSS nicht aufrufen kann?. Für weitere Informationen folgen Sie bitte anderen verwandten Artikeln auf der PHP chinesischen Website!