jQuery .css,如何将其转换为 Javascript
我有以下 jQuery 代码:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
setTimeout(function() {
$('.green.bar .inner').css('width', '20%')
},1000);
});
</script>
html 是:
<div class="green bar">
<div class="inner" style="width:10%"></div>
</div>
如何仅使用 JavaScript 完成 jQuery 代码的操作?
多谢
I have the following jQuery code:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
setTimeout(function() {
$('.green.bar .inner').css('width', '20%')
},1000);
});
</script>
And the html is:
<div class="green bar">
<div class="inner" style="width:10%"></div>
</div>
How can I do what the jQuery code does using just JavaScript?
Thanks a lot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你的意思是不使用 jQuery:
或者:
If you mean without using jQuery:
Or: