代碼的意思應該是 先變成紅色,再彈1。但是現在反過來了。。。<style> #box{ width: 100px; height: 100px; background-color: #7FFFD4; }</style><body> <div id="box"></div> <button>123123</button> </body><script> $("button").click(function() { $("#box").css("background-color", "red"); alert(1) })</script>
chrome js寫在css控制后面卻先執行了 火狐的是先css,再執行了alert
Smart貓小萌
2019-03-20 17:13:49
