Files
apt-nl-map/static/Magic4/BAK/test1.html
2024-12-04 10:21:04 +08:00

19 lines
295 B
HTML

<!DOCTYPE html>
<html>
<head>
<script>
function myFunction() {
document.getElementById("demo").innerHTML = "段落被更改。";
}
</script>
</head>
<body>
<h1>一张网页</h1>
<p id="demo">一个段落</p>
<button type="button" onclick="myFunction()">试一试</button>
</body>
</html>