下面是代码:实际上我正在使用一个循环,我想为“text”属性赋值
var someText=new Kinetic.Text({
x:stage.width()-50,
y:stage.height()/4,
text:9, //i want to change value of this property
fill:'green',
fontSize:14,
fontFamily:'Verdana'
});
someText.text()=19; // here is the error fires
上述声明中出现 "invalid assignment left-hand side"
错误。请帮帮忙?如果我执行alert(someText.text())
它的工作正常并显示9
答案 0 :(得分:1)
试试此代码
someText.text("19");
答案 1 :(得分:0)
您尝试设置文字的方式无效。尝试:
someText.setText('19');