Microsoft AJAX Client Library规范的实例

MSDN 帮助:

ms-help://MS.VSCC.v90/MS.MSDNQTR.v90.chs/dv_vwdcon/html/285e3a65-b42e-42c5-952d-baf184057899.htm

Type.registerNamespace("Demo");
Demo.Person = function(firstName, lastName, emailAddress) {
 this._firstName = firstName;
 this._lastName = lastName;
 this._emailAddress = emailAddress;
}
Demo.Person.prototype = {
getFirstName: function() {
 return this._firstName;
},
getLastName: function() {
  return this._lastName;
},
getEmailAddress: function() {
  return this._emailAddress;
},
setEmailAddress: function(emailAddress) {
 this._emailAddress = emailAddress;
},
getName: function() {
 return this._firstName + ' ' + this._lastName;
},
dispose: function() {
 alert('bye ' + this.getName());
},
sendMail: function() {
 var emailAddress = this.getEmailAddress();
 if (emailAddress.indexOf('@') < 0) {
  emailAddress = emailAddress + '@example.com';
}
 alert('Sending mail to ' + emailAddress + ' ...');
},
toString: function() {
 return this.getName() + ' (' + this.getEmailAddress() + ')';
}
}
Demo.Person.registerClass('Demo.Person', null, Sys.IDisposable);
Demo.Employee = function(firstName, lastName, emailAddress, team, title) {
Demo.Employee.initializeBase(this, [firstName, lastName, emailAddress]);
 this._team = team;
 this._title = title;
}
Demo.Employee.prototype = {
getTeam: function() {
 return this._team;
},
setTeam: function(team) {
 this._team = team;
},
getTitle: function() {
 return this._title;
},
setTitle: function(title) {
 this._title = title;
},
toString: function() {
 return Demo.Employee.callBaseMethod(this, 'toString') + '\r\n' + this.getTitle() + '\r\n' + this.getTeam();
}
}
Demo.Employee.registerClass('Demo.Employee', Demo.Person);

以上的示例包含了:

命名空间、继承、属性等相关的概念

具体参考: http://jsfkit.codeplex.com

posted @   2012  阅读(357)  评论(0编辑  收藏  举报
编辑推荐:
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· SQL Server 2025 AI相关能力初探
· AI编程工具终极对决:字节Trae VS Cursor,谁才是开发者新宠?
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
点击右上角即可分享
微信分享提示