我正在製作我的第一個GM腳本,以便用HTML 5音頻標籤替換http://www.freesound.org上的Flash預覽,併爲搜索結果添加下載鏈接。我有後者工作正常,但我不能讓音頻標籤顯示在Firefox 3.5.9。這是我的腳本:GreaseMonkey中未顯示HTML 5音頻標籤
// ==UserScript==
// @name FreeSound HTML 5 Preview
// @namespace http://thewordnerd.info
// @description Replace Flash-based sound previews on freesound.org with audio tags and add quick download links
// @include http://freesound.org/*
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.js
// ==/UserScript==
$(document).ready(function() {
$("embed").remove();
$(".samplelist").each(function(index) {
sampleNo = $(this).find("a:first").attr("href").split("?")[1].split("=")[1];
userName = $(this).find("a:eq(1)").html();
title = $(this).find("a:first").html().replace(/ /g, "_");
url = "/download/"+sampleNo+"/"+sampleNo+"_"+userName+"_"+title;
$(this).find("script").replaceWith("<audio src='"+url+"' controls='controls' type='audio/wave'/>");
//$(this).find("audio").removeAttr("tabindex");
$(this).append("<a href='"+url+"'>Download</a>");
});
});
我可以看到在Firebug中的元素,它似乎很好。
有關我在這裏可能會做錯的想法?由於下載鏈接確實下載了所需的文件,因爲這是一個浪潮,因爲我認爲我已經設置了正確的類型,所以我不知道爲什麼這不顯示。