0

考虑到我是 jQuery 的新手(但我希望了解更多信息),我不知道这些到底该怎么称呼。

如何在 DOM 中创建一个 jQuery 插件,或者甚至是一个方法,你可以有这样的参数:

"foo":"bar", "foo2":1.5,

一个工作示例(使用 jQuery Transit):

$('.box').transition( { x: '200px', y: '20px' } );

这些类型的参数叫什么(如果有的话),我如何将它们用于插件,甚至 DOM?(虽然我真的更喜欢 DOM)。

感谢您的帮助!

4

2 回答 2

2

These are just objects,

You can define them like this,

var x = { 'z' : 100, 'c' : 200 }

you can pass them into a function like this,

doSomething(x);

and you can use them in a function like this,

function dosomething(x) {
  var z = x.z;
  var x = x.c;
}
于 2013-01-15T17:31:38.993 回答
1

You mean objects?

To add a function or create a plugin:

jQuery.fn.myPlugin = function(object1, object2){
  // Here 'this' is the set of matched elements
}
于 2013-01-15T17:30:38.433 回答