一.Javascript获取系统当前时间
<script type="text/javascript"> var time = new Date(); var datetime = time.toLocaleString(); alert(datetime); </script>
运行效果:
二.Script获取div宽度:
<div id="test" style="border:1px solid #000;width:50px;height:50px;">这是测试的div</div> <script> function test(){ var test = document.getElementById("test"); //获得元素 var w = test.offsetWidth; //获得原始宽 alert("div的宽是:"+w); // test.style.width = w + ‘px‘; //设置宽度 } test(); </script>
运行效果:
三.
时间: 2024-10-09 12:13:21