HTML是一種標記語言,用于構建網站和Web應用程序。它的基本單位是標簽(tag),在這些標簽中可以放置文本、圖片、視頻等內容。以下是一個基本HTML頁面的例子:
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
</head>
<body>
<h1>Welcome to my website!</h1>
<p>This is a paragraph of text.</p>
<img src="myimage.jpg" alt="My Image">
</body>
</html>
JavaScript是一種高級編程語言,常用于為網站和Web應用程序添加交互性和動態效果。以下是一個用JavaScript實現“Hello World”功能的例子:
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<script>
function sayHello() {
alert("Hello World!");
}
</script>
</head>
<body>
<h1>Welcome to my website!</h1>
<p>This is a paragraph of text.</p>
<button onclick="sayHello()">Click me!</button>
</body>
</html>
jQuery是一種JavaScript庫,用于簡化JavaScript編程和處理DOM操作。以下是一個使用jQuery實現頁面元素漸隱漸現效果的例子:
<!DOCTYPE html>
<html>
<head>
<title>My Website</title>
<script src="https://code.jquery.com/jquery-3.5.1.min.js"></script>
<script>
$(document).ready(function() {
setInterval(function() {
$("#myelement").fadeOut(1000, function() {
$(this).fadeIn(1000);
});
}, 2000);
});
</script>
</head>
<body>
<h1>Welcome to my website!</h1>
<p>This is a paragraph of text.</p>
<div id="myelement">This is my element.</div>
</body>
</html>
下一篇怎么在表頭聲明css