js更改样式兼容性问题
发布网友
发布时间:2022-04-22 15:41
我来回答
共2个回答
热心网友
时间:2022-04-22 17:10
IE的问题,应该避免这种错误。
ie低版本中getElementById会查找到name属性。。。
<input type="button" name="mz-button" value="OnClick" onclick="fn(this.name.split('-')[0])" />
<input type="text" id="mz" value="123"/>
<script>
function fn(N){
document.getElementById(N).className="shuru";
}
热心网友
时间:2022-04-22 18:28
.shuru{
background-color:#FF0000;
}追问你这有区别嘛。。