Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
326 views
in Technique[技术] by (71.8m points)

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

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

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...