在HTML中,可以使用<script>
標簽來引入JavaScript代碼,其中包含response.write()
方法。例如:
<!DOCTYPE html>
<html>
<head>
<title>Example</title>
</head>
<body>
<script>
response.write("Hello World!");
</script>
</body>
</html>
這樣在瀏覽器中打開該頁面時,會執行JavaScript代碼,并在頁面上輸出"Hello World!"。需要注意的是,response.write()
方法通常用于服務器端腳本語言(如Node.js、ASP、PHP等),在客戶端JavaScript中一般使用document.write()
來將內容輸出到頁面上。