从标签上删除录音图标

时间:2019-01-22 07:16:07

标签: javascript jquery audio-recording web-audio

如何删除该红点(在标签上的关闭图标旁边)并在单击按钮时禁用麦克风

enter image description here

我尝试使用此代码,但它只会在控制台中为假,但不会阻止麦克风,也不会删除该红色图标。

navigator.mediaDevices.getUserMedia({ audio: false })
.then(function(stream) {
   console.log('You let me use your mic!')
 })
 .catch(function(err) {
   console.log('No mic for you!')
 });

I have follow this question,但没有删除红色图标。

0 个答案:

没有答案