Prototype怎么为一个Ajax添加一个参数

Prototype如何为一个Ajax添加一个参数?代码如下:new Ajax.Request(/your_url, {method: ‘get,parameter

Prototype如何为一个Ajax添加一个参数?
代码如下:
new Ajax.Request('/your_url', {
method: ‘get',
parameters: {name: ‘rainman', limit: 12}
});