Is there that I can continue my HTML code in anoth

2020-01-18 22:50发布

Is there that I can continue my HTML code in another page, while being in the main code?

For example, in HTML you can make 1000 extra pages of JS and just use something like

<script src="js/example.js"></script>

to make the HTML page look cleaner, and less obstructed by the extra JS code, is there a way I can do that to continue adding more HTML elements to another page while using the same stuff from my main page?

im writing a lot of HTML and don't want to make the main page too messy

3条回答
Lonely孤独者°
2楼-- · 2020-01-18 23:11

If you rename your file to filename.php, you can use an include function. The code should look like this:

<?php

include 'header.html';

?>

You should probably put the files on the body. Just a warning: PHP is hard to learn at first, especially because you have to host a server and do many other things. To learn more about the subject, visit these sites:

W3schools PHP tutorial

XXAMP

查看更多
爱情/是我丢掉的垃圾
3楼-- · 2020-01-18 23:15

You could consider using .php and using php include.

查看更多
SAY GOODBYE
4楼-- · 2020-01-18 23:20

Use jQuery .load()

$('#idofDiv').load('file.html');
查看更多
登录 后发表回答