我想要更改按鈕pause
的css屬性,當我單擊按鈕stop
時。如何獲取與MeteorJS單擊的按鈕旁邊的按鈕
而且隨着我的JS代碼我試圖使用jQuery做一些事情:
'click .stop' (event) {
Session.set(this._id + "_spinningRng", true);
const idDB = this._id
const container = InfosContainers.findOne({
_id: idDB
});
const name = container["nameContainer"];
const idContainer = container["idContainer"];
console.log("the container: " + name + " is going to be stopped. His id is: " + idContainer);
$(event.target).closest(".pause").css({
'background-color': 'green',
});
Meteor.call("container.stop", idContainer);
},
但沒有任何反應(與CSS的一部分,流星方法調用和所有的東西正在工作)所以我試圖找到我做錯了什麼
謝謝你的建議,它的工作原理 – Jerome
歡迎您 – Zorken17