我正在嘗試在幾個網站中集成Toggl按鈕。 我做了什麼是written here。 我在forbes.js代碼如下所示:集成撥號按鈕不起作用
/*jslint indent: 2 */
/*global $: false, document: false, togglbutton: false*/
'use strict';
togglbutton.render('#task:not(.toggl)', {observe: true}, function (elem) {
var link,
description = $('.title', elem).textContent,
project = $('.project', elem).textContent;
link = togglbutton.createTimerLink({
className: 'forbes',
description: description,
projectName: project
});
$('container-fluid').appendChild(link);
});
但如果我嘗試測試它沒有任何反應。我想我犯了一個錯誤:
$('container-fluid').appendChild(link);
但我不知道如何糾正它。非常感謝!
我想你忘了定義類或者你的「容器流體」 – smdsgn
@smdsgn的ID,它在,我想編輯頁面已經預先定義,它是瀏覽器擴展程序應顯示Toggl計時器在該元素。 – Denis
您正在使用一個jQuery對象的DOM方法。改爲使用追加jQuery方法。 $(「容器流體」)附加(鏈接); – smdsgn