编写一个JSP 页面 selectMusic.jsp。该页面使用 select(下拉列表)提供一些歌曲名,用户选择一个一个歌曲名,单击提交健提交给当的页面,然后当前页面播放用户选择的音乐)。
时间: 2024-05-20 07:16:47 浏览: 124
select Music.jsp
<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="UTF-8"%>
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Select Music</title>
</head>
<body>
<h1>Select Music</h1>
<form action="playMusic.jsp" method="post">
<label for="music">Choose a music:</label>
<select name="music" id="music">
<option value="song1.mp3">Song 1</option>
<option value="song2.mp3">Song 2</option>
<option value="song3.mp3">Song 3</option>
<option value="song4.mp3">Song 4</option>
</select>
<br><br>
<input type="submit" value="Play">
</form>
</body>
</html>
阅读全文