javascript中是没有类的哦,在javascript中都是用函数闭包模拟出来的。
在javascript中,String 和Date 等都叫做对象,而不是类。
关于js中的this用法一样吗:
其实在js中 this指的是调用函数的那个对象
和java中一样,this指的是本类对象
下面是我写的一个js方法,演示了this的使用,楼主可以参看以下- function inputOnblur(){
- if(this.value<=0){//若小于等于0就说明文本框中为空
- this.style.background="red";
- }
- else{
- this.style.background="white";
- }
- }
复制代码 |