代码实例:

<!DOCTYPE html PUBLIC "-//W3C//DTDXHTML 1.0 Transitional//EN""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>无标题文档</title>
<style>
*{ margin:0; padding:0;}
#ul1{ width:1000px; height:30px;}
#ul1 li{
list-style:none;
width:100px;
height:30px;
background: #cccccc;
color:white; border:1px #000 solid;
float:left;
line-height:30px;
text-align:center;
}
</style>
<script> window.onload = function(){
var aLi = document.getElementsByTagName('li');
var oA = document.getElementById('a1');
for(var i=0;i<aLi.length;i++){
aLi[i].onmouseover= function(){
//this.getAttribute('au');
//字符串拼接的方式,获取不同的地址
oA.src = this.getAttribute('au')+'.mp3';
//播放
oA.play();
};
}
};
</script>
</head>
<body>
<ul id="ul1">
<li au="A" background="blue" >首页</li>
<li au="B">视频</li>
<li au="C">课程</li>
<li au="D">职业</li>
<li au="E">企业</li>
<li au="F">社区</li>
<li au="G">会员</li>
</ul>
<audio id="a1"></audio>
</body>
</html>

效果:

编辑的文件

2017-09-03 20:44:37

最新文章

  1. jquery删除数组中重复元素
  2. Install the Maven in your computer
  3. Intellij IDEA中使用Struts2
  4. Ubuntu下安装Apache mysql php的命令
  5. Android_SystemService
  6. C++ const修饰函数、函数参数、函数返回值
  7. 函数式编程很难,这正是你要学习它的原因 | 外刊IT评论网
  8. 如何在sublime中使用sass
  9. Semaphore简介
  10. 【原创】Arduino入门基础知识总结
  11. 【4-1】js函数、事件、补充知识
  12. PostgreSQL代码分析,查询优化部分,canonicalize_qual
  13. 性能测试-Gatling(一)
  14. Solaris11 Vsphere client tool 的鼠标问题
  15. code EINTEGRITY,npm安装时候报错
  16. EF Core中Key属性相同的实体只能被跟踪(track)一次
  17. 在iOS中如何正确的实现行间距与行高
  18. Filter责任链模式
  19. Mac中Mysql开启远程访问(不同于linux直接改配置文件)
  20. springboot13 Hikari 和Introspector

热门文章

  1. ht-1 jdk calendar类
  2. sts创建maven项目 引入spring,报错
  3. 20180823-Java包
  4. ionic学习使用笔记(二) slide 组件的使用
  5. Jmeter 中文乱码解决方案
  6. Oracle Data Guard Protection Modes
  7. android7.0对于SharedPreferences设置模式的限制
  8. leetcode 141. 环形链表(C++)
  9. JavaScript中的十种操作符
  10. cron 定时任两种配置方式