为什么我的按钮会自动启动而不是手动启动?

时间:2017-06-21 09:13:21

标签: javascript jquery angular

我使用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;
  // }
});

1 个答案:

答案 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; 
            // }
    };