我有这个:
document.getElementById('returning_user_search_box').style.backgroundColor='yellow';
现在我需要添加更多这样的样式:
左边距:-280px;边距顶部:-280px;最小宽度:550px;
我尝试了一些这样的组合,但没有成功:
document.getElementById('returning_user_search_box').style.innerHTML='{margin-left:-280px; 边距顶部:-280px;最小宽度:550px;}';
有什么线索吗?