JavaScriptr -- 常用对象 String, date, prototype

<script type="text/javascript">

//给已有的对象添加自定义功能
function getMax()
{
	var max = this[0];
	for(var x=0; x<this.length; x++)
	{
		if( this[x] > max )
			max = this[x];
	}
	return max;
}
Array.prototype.getMax = getMax;  //在已有对象基础上添加新的方法
var arr = [2,6,4,2,8,2,9];
var a = arr.getMax();
alert("max=" + a); 

//date对象 获取日期
date =new Date();
with(date)
{
	var month = getMonth() + 1;
	alert(getYear() + "年" + month + "月");
}
alert(date);

//String对象 
str = new String("hello");
alert(str.charAt(0));

</script>

posted @ 2013-11-19 22:41  今晚打酱油_  阅读(180)  评论(0编辑  收藏  举报