我想使用js更改在css中設置爲white
的background
顏色。不知道爲什麼沒有發生。使用javascript更改css背景
<body>
<div class="invoice-box">
<table cellpadding="0" cellspacing="0">
<tr class="top">
<td colspan="2">
<table>
<tr>
<td class="title">
<img src="emoji.png" width="100">
</td>
的.css
.invoice-box {
background: white;
max-width:800px;
margin:auto;
padding:30px;
border:1px solid #eee;
box-shadow:0 0 10px rgba(0, 0, 0, .15);
font-size:16px;
line-height:24px;
font-family:'Helvetica Neue', 'Helvetica', Helvetica, Arial, sans-serif;
color:#555;
的.js
document.getElementById("invoice-box").style.background = "red";