我正在尝试更改包含表单的DIV标记的填充作为其子项。下面是HTML
<div id="a">
<form id="b" style="background-color:Red;height:300px">
<input type="text" />
</form>
</div>
以下是CSS
document.onclick = function(){
document.getElementById('a').style.padding = "1% 1% 1% 1%"
};
请检查this小提琴中的行为。它工作不正常......
答案 0 :(得分:2)
使用其他内容重命名表单ID,然后尝试,表单和div都具有相同的名称。
我把你的小提琴分开了jsfiddle.net/FAYvE
答案 1 :(得分:1)