請把以下的編碼放於<body></body>之內
<script language="JavaScript">
s_date = new Date();
if(s_date.getDay() == 1){
document.write('<embed width=0 height=0 hidden="true" autostart="true"
volume="5" loop="false" src="檔案名稱_1.mid">');
}
//volume=調整音量;loop=播放次數
if(s_date.getDay() == 2){
document.write('<embed width=0 height=0 hidden="true" autostart="true"
volume="5" loop="false" src="檔案名稱_2.mid">');
}
if(s_date.getDay() == 3){
document.write('<embed width=0 height=0 hidden="true" autostart="true"
volume="5" loop="false" src="檔案名稱_3.mid">');
}
if(s_date.getDay() == 4){
document.write('<embed width=0 height=0 hidden="true" autostart="true"
volume="5" loop="false" src="檔案名稱_4.mid">');
}
if(s_date.getDay() == 5){
document.write('<embed width=0 height=0 hidden="true" autostart="true"
volume="5" loop="false" src="檔案名稱_5.mid">');
}
if(s_date.getDay() == 6){
document.write('<embed width=0 height=0 hidden="true" autostart="true"
volume="5" loop="false" src="檔案名稱_6.mid">');
}
if(s_date.getDay() == 7){
document.write('<embed width=0 height=0 hidden="true" autostart="true"
volume="5" loop="false" src="檔案名稱_7.mid">');
}
if(s_date.getDay() == 0){
document.write('<embed width=0 height=0 hidden="true" autostart="true"
volume="5" loop="false" src="檔案名稱_8.mid">');
}
</script>
//檔案名稱請自行更改