//定义类
//方式一
function A_class(arg1,arg2){
this.arg1=arg1;
this.arg2=arg2;
this.toString=function(){
alert(this.arg1+" "+this.arg2)
}
}
var a_class = new A_class("aa","bb");
a_class.toString();
//方式二
function B_class(arg1,arg2){
this.arg1=arg1;
this.arg2=arg2;
}
B_class.prototype={
constructor:B_class,
print:function(){
alert(this.arg1+" "+this.arg2);
}
}
var b_class = new B_class("11","22");
b_class.print();
//方式三
function C_class(arg1,arg2){
this.arg1=arg1;
this.arg2=arg2;
}
C_class.prototype.output=function(){
alert(this.arg1+" "+this.arg2);
}
var c_class = new C_class("@@","##");
c_class.output();
相关文章
- [转]OC与JS的交互详解
- jQuery Validate 表单验证插件----通过name属性来关联字段来验证,改变默认的提示信息,将校验规则写到 js 代码中
- iOS中如何添加自定义的字体
- iOS中如何添加自定义的字体
- jQuery Validate 表单验证插件----自定义校验结果样式
- jQuery 关于IE9上传文件无法进入后台问题的原因及解决办法(ajaxfileupload.js第四弹)
- 浅谈浏览器端 WebGIS 开发可能会用到的、提升效率的 js 库
- js02--对象、函数、switch、for、异常、表单验证
- JS下拉图片Demo3
- 基于 Vue.js 之 iView UI 框架非工程化实践记要 使用 Newtonsoft.Json 操作 JSON 字符串 基于.net core实现项目自动编译、并生成nuget包 webpack + vue 在dev和production模式下的小小区别 这样入门asp.net core 之 静态文件 这样入门asp.net core,如何