Dojo 到 jQuery 的迁移
我有这段代码:
dojo.declare("City", null, {
constructor : function(cityid, cityinfo){
}
});
dojo.declare("TPolyline", GPolyline, {
constructor : function(points, color){
},
initialize : function(map){
});
它的 jQuery 等价物应该是什么?
I have this code:
dojo.declare("City", null, {
constructor : function(cityid, cityinfo){
}
});
dojo.declare("TPolyline", GPolyline, {
constructor : function(points, color){
},
initialize : function(map){
});
What should be it's jQuery equivalent?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不认为 jQuery 提供了用于创建开箱即用的类和包的工具。 您可以查看是否有一个 插件 可以做到这一点。
如果事实证明这不是真的,我也很想知道答案! 我使用过一点 jQuery,但使用 YUI 来构建包和类。
I do not think that jQuery provides tools for creating classes and packages out of the box. You can look to see if there is a plugin that does it.
If this turns out to not be true, I would love to know the answer as well! I have used jQuery a bit but use YUI to build packages and classes.