http://www.jplayer.org/support/ – 这是jplayer suppost(向下滚动以查看jplayer在IE 6,7,8,firefox和opera中不起作用的地方
设置jplayer音频javascript:http://www.jplayer.org/latest/quick-start-guide/step-7-audio/
现在的问题是,即使jplayer音频播放器在Chrome上运行,它也无法在IE,firfox和Opera上运行.我的问题是,FAQ中提到的问题是.swfPath的src是不正确的?
swf文件的完整目录是helios.hud.ac.uk/u0867587/Mobile_app/jquery/jplayer.swf
应用程序previewaudio.PHP ishelios.hud.ac.uk/u0867587/Mobile_app/previewaudio.PHP
jquery是:
我在firebug中得到这个:不支持“audio / mpeg”的HTTP“Content-Type”.“这是什么意思?
更新:
Meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
dio jplayer.blue.monday.css" rel="stylesheet" />
PHP
$getaudio = 'AudioFiles/' . $_GET['filename'];
$audioquery = "SELECT AudioFile FROM Audio WHERE (AudioFile = ?)";
if (!$audiostmt = $MysqLi->prepare($audioquery)) {
// Handle errors with prepare operation here
}
// Bind parameter for statement
$audiostmt->bind_param("s",$getaudio);
// Execute the statement
$audiostmt->execute();
if ($audiostmt->errno)
{
// Handle query error here
}
$audiostmt->bind_result($dbAudioFile);
$audiostmt->fetch();
$audiostmt->close();
?>
PHP echo "File Path " . $dbAudioFile; ?>
jplayer_1" class="jp-jplayer">dio">
最佳答案