JS中Style无法使用,如何排查问题?
js中style不能使用问题解析
在所提供的代码中,在脚本部分的onclink事件绑定中,出现了拼写错误,导致style不能使用。
错误代码:
box1.style.widtn = "300px";
正确代码:
box1.style.width = "300px";
修复后的完整代码:
<meta charset="utf-8"><title></title><style type="text/css"> #box1 { width: 100px; height: 100px; background-color: red; } </style><button id="btn01">点我一下</button> <br><br>
以上就是JS中Style无法使用,如何排查问题?的详细内容,更多请关注其它相关文章!