jsp 播放背景音乐的问题
<bgsound src="xxxx.mp3"loop="2"/><embed src="xxxx.mp3" loop="1" autostar="true"/>
这2句代码我亲身测试,在IE浏览器可以正常播放,但是到了其他浏览器就会变成下载。
我的要求很简单,就是不兼容IE浏览器,还有一进项目主页就播放背景音乐 1遍就好,求大神代码。
因为我的项目不兼容IE浏览器,其他浏览器都兼容,求大神。 java 背景音乐 --------------------编程问答-------------------- 火狐要装了插件才行的。iTune+Quick --------------------编程问答--------------------
<%@ page isELIgnored="false"%>
<%@ page language="java" contentType="text/html; charset=utf-8" pageEncoding="utf-8"%>
<% String contextPath = request.getContextPath(); %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="expires" content="0" />
<script type="text/javascript" src="js/jquery/jquery-1.7.1.js"></script>
<script type="text/javascript" src="js/jquery/jquery-plugin-util.js"></script>
<title>jsp测试背景音</title>
<script type="text/javascript">
</head>
<body>
<!-- 背景音 OBJECT标签嵌入MediaPlayer 支持 .mp3、.wma -->
<object id="Player" name="Player" data="mid/fc.mp3" type="application/x-mplayer2" width="0" height="0">
<param name="src" value="mid/fc.mp3"/>
<param name="autostart" value="true"/>
<param name="loop" value="-1"/>
</object>
</body>
</html>
补充:Java , Web 开发