2017-06-21 98 views
-2

我開發使用劍鋒媒體服務器與角2的API。爲什麼我的按鈕自動和手動不啓動?

我有一個問題,啓動按鈕,一旦我跑劍鋒它手動自動啓動按鈕沒有。

這是我使用的功能:

// 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

雖然我編輯標題以匹配您的問題在體內仍然是很不清楚你問的東西。 – Nope

回答

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