プロパティを名前、値として送信すると、名前の引数値ではなく、名前が「名前」として送信されます。それに対する修正はありますか?現在、ケースを使用して正しい方法で送信しています。
ワーキングワン
/**
* Change properties of the elements
*/
this.changeProperties = function(type,value) {
switch(type)
{
case "stroke":
$.DrawEngine.changeProperties({"stroke":value});
break;
case "font-family":
$.DrawEngine.changeProperties({"font-family":value});
break;
}
};
動作していない
this.changeProperties = function(type,value) {
$.DrawEngine.changeProperties({"stroke":value});
}
理由
{type:"red"}
代わりに送信します{"stroke": "red"}