我希望在不使用点击按钮的情况下更改background color
<script>
onclick.document.getElementById('myDiv').style.backgroundColor = 'red';
</script>
答案 0 :(得分:0)
你必须附加点击事件,然后你可以做到这一点,没有这样的事情onclick.document.getElementById(
document.addEventListener("click", function(){
document.getElementById("myDiv").style.backgroundColor = 'red';
});