JavaScript内置对象

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaScript内置对象相关的知识,希望对你有一定的参考价值。

一、什么是对象

    1.什么是对象:javascript中的所有事物都是对象:字符串、数值、数组、函数...

     每个对象带有属性和方法

     JavaScript允许自定义对象

    2.自定义对象:

     定义并创建对象实例

      使用函数来定义对象,然后创建新的对象实例    

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
	</head>
	<body>
		<!--创建对象-->
		<script>
//			people = new Object();
//			people.name = "yeleven";
//			people.age = "22";
//			document.write("name:"+people.name+",age:"+people.age);
//			people = {name:"yeleven",age:"22"};
//			document.write("name:"+people.name+",age:"+people.age);
			function people(name,age){
				this.name = name;
				this.age = age;
			}
			son = new people("yeleven",22);
			document.write("name:"+son.name+",age"+son.age);
		</script>
	</body>
</html>


二、String字符串对象

    1、String对象

        String对象用于处理已有的字符串

        字符串可以使用单引号或双引号

    2、在字符串中查找字符串:indexOf()

    3、内容匹配:match()

    4、替换内容:replace()

    5、字符串大小写转换:toUpperCase()/toLowerCase()

    6、字符串转为数组:strong>split()

    7、字符串属性和方法:

        属性:length、prototype、constructor

        方法:charAt()、charCodeAt()、

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
	</head>
	<body>
		<!--创建对象-->
		<script>
			var str = "Hello World";
			var str1 = "hello,yeleven1,yeleven2";
//			document.write("字符串长度为:"+str.length);
//			document.write(str.indexOf("World"));
//			document.write(str.match("World"));
//			document.write(str.replace("World","Yeleven"));
//			document.write(str.toUpperCase());
//			document.write(str.toLowerCase());
			var str = str1.split(",");
			document.write(str[1]);
		</script>
	</body>
</html>







以上是关于JavaScript内置对象的主要内容,如果未能解决你的问题,请参考以下文章

C#-WebForm-★内置对象简介★Request-获取请求对象Response相应请求对象Session全局变量(私有)Cookie全局变量(私有)Application全局公共变量Vi(代码片段

第五天:内置对象(7.Javascript内置对象)

Atom编辑器折腾记_(15)JS代码片段补全(插件:javascript-snippets)

常用Javascript代码片段集锦

VSCode自定义代码片段——JS中的面向对象编程

JavaScript单行代码,也就是代码片段