0

在下面的代码中,我如何使用作为参数传递给drawOval

drawOval=function(options) {
    $triangle = new Triangle({
        // how can I use options array here
        // the format it accept is top:450,
        // left:500,width:200
    });
};
opt = new Array(
    top: 450,
    left: 500,
    width: 200,
    height: 200,
    fill: 'rgb(204,0,107)'
);
drawOval(opt);
4

1 回答 1

0

基本上我需要一个对象而不是数组。

opt= {
    top:100,
    left:200,
    width:200,
    height:200,
    fill:'rgb(12,0,107)'
}
drawOval(opt);
于 2012-04-24T13:01:02.083 回答