码迷,mamicode.com
首页 > 编程语言 > 详细

javaScript中for、with、日期的用法

时间:2017-08-24 22:40:45      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:rip   date   for语句   style   his   document   name   person   返回值   

最近初学javaScript,记录下学习心得吧,javaScript是一种灵活性很高的语言,今天先记录下它的初级应用。

with语句:有时候我们需要多次使用dom对象的函数,每次都要声明,例如document.write(),我们就可以用with,免去多次调用的麻烦。

example:

with(document){ write("Hello"); write("World"); write("<hr>"); }

for语句:表示遍历一个对象或对象组内的元素

首先定义一个对象;

function Person(name,age){        //相当于一个构造函数,可以用其创建对象
        this.name=name;
        this.age=age;
    }

然后声明一个函数,要传入两个参数,使用for语句遍历第一个参数对象,将其值加入到str,然后返回

 function iteratorObj(obj,objString){
        var str = "";
        for(var i in obj){
           str+=objString+"."+i+"="+obj[i]+"<br>";
        }
        return str;
    }
    var obj = new Person("炎宁","18");
    document.write(iteratorObj(obj,"person"));//输出iteratorObj函数的返回值
    document.write("<hr>");

//输出结果为:person.name=炎宁 person.age=18

日期对象Date,用法如下:

 var date = new Date();
    document.write(date.getYear()+1900+"年"+(date.getMonth()+1)+"月"+date.getDate()+"日"+"  "+
        date.getHours()+":"+date.getMinutes()+":"+date.getSeconds());

//输出时间:2017年8月24日 21:4:41

 

javaScript中for、with、日期的用法

标签:rip   date   for语句   style   his   document   name   person   返回值   

原文地址:http://www.cnblogs.com/yanking/p/7425302.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!