我正在尝试在 Chrome 中使用 navigator.getUserMedia;但是,它在本地提供时(文件:///whatever/index.html)并不请求许可,而是在 JSFiddle(http://jsfiddle.net/EBsvq/)和其他站点上请求许可。
有谁知道这是什么原因?我需要以某种方式重置我的权限吗?
这是我在本地使用的:
<html>
<head></head>
<body>
<button id="btn">Start</button>
<script type="text/javascript">
/*! jQuery v1.8.3 jquery.com | jquery.org/license */
//JQuery goes here
</script>
<script type="text/javascript">
navigator.getUserMedia = navigator.webkitGetUserMedia || navigator.getUserMedia;
$(function(){
$('#btn').click(function(){
navigator.getUserMedia({audio: true},
function(){
alert('success');
},
function (err) {
alert('fail: ' + JSON.stringify(err));
}); }); });
</script>
</body>
</html>