在一个文件中构建多个jQuery插件?

时间:2014-04-04 09:23:00

标签: jquery

如果我在一个文件中构建多个jquery插件会有问题吗?例如:

//first plugin
(function($){
  //first plugin code goes here
})(jQuery)

//second plugin
(function($){
  //second plugin code goes here
})(jQuery)

//third plugin
(function($){
  //third plugin code goes here
})(jQuery)

1 个答案:

答案 0 :(得分:1)

技术上是javascript允许的。但通常开发人员总是制作模块化代码以防止其他开发人员混淆。有时他们必须调试你的代码,意大利面条代码会使这个过程更加困难。如果您制作了两个版本的代码,即开发版本和生产版本,那就更好了。