zoukankan      html  css  js  c++  java
  • js控制背景音乐播放

    今天刚实现的一个例子,根据AJAX动态取得的数据决定播放那条音乐:

        function playMiusic(type){

            if(type == ""){
                return;
            }
            var soundKy="../flash/k.mp3"   
            var soundSg="../flash/h.mp3"   
            var soundTs="../flash/t.mp3"   
            var sound = type == "ky" ? soundKy :
                        type == "sg" ? soundSg :
                        type == "ts" ? soundTs : "";
            if (navigator.appName=="Microsoft Internet Explorer"){//IE浏览器
                document.getElementById("showMusic").innerHTML = '<bgsound src='+'"'+sound+'"'+' loop="infinite">';
            } else {//其他浏览器
                document.getElementById("showMusic").innerHTML = '<embed src='+'"'+sound+'"'+' hidden="true" autostart="true" loop="true">';
            }
        }
  • 相关阅读:
    Eclipse 中使用 ctrl 无法追踪函数的问题
    AJAX跨域问题
    eclipse设置svn代理
    同步IO和异步IO
    阿里云配置redis
    Centos +django+nginx
    Centos 安装nginx
    django 给前端传递HTML内容
    django项目初探
    python邮件服务
  • 原文地址:https://www.cnblogs.com/foren/p/6009113.html
Copyright © 2011-2022 走看看