ボタンstop
をクリックすると、pause
ボタンのCSSプロパティを変更したいと思います。私はjQueryの使用して何かをしようとしたMeteorJSでクリックしたボタンの隣にあるボタン
そして、私のJSコードで :
だからHTMLは次のようになります
'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