首页 > 代码库 > JS对象的使用
JS对象的使用
<!DOCTYPE html> <html> <head lang="en"> <meta charset="UTF-8"> <title>JS对象使用</title> <script type="text/javascript"> //Date使用 var date = new Date();//当前系统时间 //获取年月日等 document.write(date.toLocaleString()+"<br/>"); document.write(date.getFullYear()+"<br/>"); document.write(date.getDate()+"<br/>"); document.write(date.getDay()+"<br/>"); document.write(date.getMonth()+1+"<br/>"); //有get,对应的就有set 设置各个值 date.setFullYear(date.getFullYear()+1); document.write(date.getFullYear()+"<br/>"); //Math使用 document.write(Math.abs(-3.5)+"<br/>");//绝对值 document.write(Math.ceil(-3.5)+"<br/>");//-3 向上取整 document.write(Math.floor(-3.5)+"<br/>");//-4 向下取整 document.write(Math.max(-3,9)+"<br/>");//9最大值 document.write(Math.round(4.6)+"<br/>");//6 四舍五入 </script> </head> <body> </body> </html>
JS对象的使用
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。