4

我正在尝试在我的网页上嵌入一个 jRecorder。我在此文档页面http://www.sajithmr.me/jrecorder/index.html上添加了要添加的内容,当我打开页面时,它是空白的。

页面如下所示:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script src="jquery.min.js"> </script>
<script src="jRecorder.js"> </script>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Untitled Document</title>
</head>
<body>
<div>
<script>
    $.jRecorder(
    {
       'rec_width': '300',
       'rec_height': '200',
       'rec_top': '0px',
       'rec_left': '0px',
       'recorderlayout_id' : 'flashrecarea',
       'recorder_id' : 'audiorecorder',
       'recorder_name': 'audiorecorder',
       'wmode' : 'transparent',
       'bgcolor': '#ff0000',
       'swf_path': 'jRecorder.swf',
       'host': 'acceptfile.php?filename=hello.wav',
       'callback_started_recording' : function(){},
       'callback_finished_recording' : function(){},
       'callback_stopped_recording': function(){},
       'callback_error_recording' : function(){},
       'callback_activityTime': function(time){},
       'callback_activityLevel' : function(level){}
        }
        );
</script>
</div>
</body>
</html>

我是否错误地遵循了这个?

4

1 回答 1

-1

嘿关于 jRecorder,正如 Miguel 所说,你需要检查浏览器的兼容性。所以如果你使用 chrome 或 opera 或 firefox,你不会有任何问题。但如果它是 IE8 或 9,它不会工作,但 IE10 会。所以如果你想让它在 IE9 上工作你需要做什么你需要修改你的 jRecorder.js 或者如果你想尝试从https://github.com/capsula4/jRecorder下载它,我认为他解决了这个问题。

谢谢

于 2012-09-07T00:08:37.663 回答