我有這種格式的數組:如何檢索數組內對象的文本?
points.push(
{text: '<span style="font-weight: bold;font-size:25px;">hi</span>'},
{text: '<span style="font-weight: bold;font-size:25px;">hello</span>'},
{text: '<span style="font-weight: bold;font-size:25px;">call</span>'},
{text: '<span style="font-weight: bold;font-size:25px;">crow</span>'});
當我使用alert(points[1]);
我得到[object object]
顯然是因爲有周圍的一些HTML代碼...
誰能告訴我如何內檢索文本這個數組。 我只需要輸出爲「hi」或「hello」或「call」或「crow」
謝謝。