嗨,我使用 javascript 制作了一个 mp3 播放器,它可以在除 IE10 之外的所有浏览器上完美运行
Ex of page : http://www.mupiz.com/noon (试着点击一首歌)
但是IE10遵循链接并忽略之前的脚本......
这是我的脚本:
var list = $("#playlist").find("a:not(.songLink)");
listNC=new Array();
for (var i=0;i<list.length;i++) { // we get all the song
list[i].rel = i;
$(list[i]).parent().parent().prepend("<td class='notplayed' width='25px'><img src='../../images/lecteur-B-playlist-play.png' style='z-index:10000'/></td>");
listNC[i]=girlify(list[i].href);
list[i].onclick = function(event) { // onclick on each link
if($(this).attr('class')!="songLink"){
soundManager.stopAll();
current = this.rel;
event.preventDefault();
lire_current(); // this play the song
return false; // **this does not work!**
}
};
这是 CSS 的专用部分