0

HTML5サウンドを再生するための次のJavaScriptコードがあります。

    var html5_audiotypes={ //define list of audio file extensions and their associated audio types. Add to it if your specified audio file isn't on this list:
        "mp3": "audio/mpeg",
        "mp4": "audio/mp4",
        "ogg": "audio/ogg",
        "wav": "audio/wav"
    }

    function createsound(sound){
        var html5audio=document.createElement('audio')
        if (html5audio.canPlayType){ //check support for HTML5 audio
            for (var i=0; i<arguments.length; i++){
                var sourceel=document.createElement('source')
                sourceel.setAttribute('src', arguments[i])
                if (arguments[i].match(/\.(\w+)$/i))
                    sourceel.setAttribute('type', html5_audiotypes[RegExp.$1])
                html5audio.appendChild(sourceel)
            }
            html5audio.load()
            html5audio.playclip=function(){
                html5audio.pause()
                html5audio.currentTime=0
                html5audio.play()
            }
            return html5audio
        }
        else{
            return {playclip:function(){throw new Error("Your browser doesn't support HTML5 audio")}}
        }
    }

//Initialize two sound clips with 1 fallback file each:
var sound1=createsound("audio/tileSelect.ogg", "audio/tileSelect.mp3")
var sound2=createsound("audio/tileRemove.ogg", "audio/tileRemove.mp3")

他の機能でsound1.playclip();使用すると、サウンドを再生できます

問題:

IDのチェックボックスがあります:sound。チェックすると音が聞こえますが、そうでない場合は音が聞こえません。

チェックボックスのコードは現在次のとおりです。

function playSound() {
    if (document.getElementById('sound').checked){
        [something has to be added here?]
    }
}

チェックを外したときではなく、チェックしたときに音を聞くには、この部分に何を追加する必要がありますか?私はそれを機能させることができないようです。

よろしく、モーリス

4

1 に答える 1

0

気にしないで、私はそれを解決しました。私はあまりにも一生懸命考えていました、それは非常に簡単に行うことができます:

if (document.getElementById('sound').checked){
                sound1.playclip(); 
            }

これは動作します

于 2012-04-30T15:21:04.127 に答える