如图 我需要点击蓝色区域的div时 绿色区域的红色箭头转180度 但是目前效果是只有点绿色区域才有反应 有人指教该怎么改吗_(:з」∠)_html代码:<div class="panel-heading" id="panel-heading"> <img src="/img/xiala@2x.png" alt="下拉" class="xiala" id="xiala" onclick="return change()"></div>js代码:window.onload = function(){ var current = 0; document.getElementById('xiala').onclick = function(){ current = (current+180)%360; this.style.transform = 'rotate('+current+'deg)'; }};
添加回答
举报
0/150
提交
取消