在其他浏览器中,我看到了音频播放器,但在 IE9 中,我看到了:
http://adamkobrin.com/test1.php
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>test1</title>
<style type="text/css">
audio {
width: 300px;
height: 40px;
}
</style>
</head>
<body>
<audio controls preload="auto">
<source src="audio/crickets.mp3" />
<source src="audio/crickets.ogg" />
Your browser does not support the audio tag.
</audio>
</body>
</html>