在ASP頁面中嵌入JavaScript或CSS可以通過在<head>
標簽內或者<body>
標簽內使用<script>
標簽或<style>
標簽來實現。
<html>
<head>
<script>
function myFunction() {
alert("Hello World!");
}
</script>
</head>
<body>
<button onclick="myFunction()">Click me</button>
</body>
</html>
<html>
<head>
<style>
body {
background-color: lightblue;
}
</style>
</head>
<body>
<h1>Hello, world!</h1>
</body>
</html>
可以在ASP頁面的任何位置嵌入JavaScript或CSS,只需要確保代碼位于<script>
或<style>
標簽內,并且在合適的位置使用即可。