单击按钮时,我需要更改图像不透明度,然后再次单击按钮时更改回来。我只能使用 Javascript。我已经设置了 2 个 if/else 语句,当我第一次点击按钮时,事件发生但我无法让第二个事件发生。我对javascript很陌生。
var img = document.querySelector('#img');
var button1 = document.querySelector('#button1');
var bool = new Boolean();
if (chrome.style.opacity = "1.0"){
bool = true;
}
else if (chrome.style.opacity = "0.5"){
bool = false;
}
if (bool){
button1.addEventListener('click', function() {
chrome.style.opacity = "0.5";
});
}
else{
button1.addEventListener('click', function() {
chrome.style.opacity = "1.0";
});
}