我使用Janus媒体服务器使用Angular 2开发API。
启动按钮出现问题,一旦我运行Janus,它就会自动启动按钮。
这是我使用的功能:
// Use a button to start the demo
$('#start').click(function() {
if (started)
return;
started = true;
$(this).attr('disabled', 'true').unbind('click');
// Make sure the browser supports WebRTC
// if(!Janus.isWebrtcSupported()) {
// Janus.log("No WebRTC support... ");
return;
// }
});
答案 0 :(得分:0)
这是没有Jquery的代码(我假设这是你要求的?)。
// Use a button to start the demo
let start = document.getElementById('#start')
start.onclick = function() {
if(started)
return;
started = true;
start.onclick = ''
start.disabled = true
// Make sure the browser supports WebRTC
// if(!Janus.isWebrtcSupported()) {
// Janus.log("No WebRTC support... ");
return;
// }
};