1

我有以下代码来检索结果。

var _label:Number = (data.ask - data.bid) * 10000;
this.text = String(_label.toFixed(0));

我想知道要添加什么才能从左侧检索前 2 个数字,仅用于结果。例如,:

1234756.21354 > 12

75484.014 > 75

4

1 回答 1

0

您可以使用.substr().slice().substring()方法:

this.text = String(_label.toFixed(0)).substr(0,2);
//this.text = String(_label.toFixed(0)).slice(0,2);
//this.text = String(_label.toFixed(0)).substring(0,2);

要在之间添加.(点),请尝试以下操作:

var numstr:String = String(_label.toFixed(0)).substr(0,2);
this.text = Number(numstr)/10 + "";
于 2012-07-24T10:57:16.003 回答