代码结构-如何将文件(JS, PHP等)包含到HTML中



你好吗?

我想尽可能仔细地组织我的代码,但是我不知道怎么做。在一个文件中,我有PHP, JS和HTML代码,我想知道是否有可能通过包含它们的"路径"来分离内容。在HTML代码中

例如,如何将php代码和js代码分开:

<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
{ js code }
{ php code }
</body>
</html>```
Thank you in advance for the information I would receive

你可以使用'.php'作为默认文件然后把html放到

<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<script src="file.js"></script>
<?php include('file.php') ?>
</body>
</html>

相关内容

  • 没有找到相关文章

最新更新