私はこの形式の配列を持っています:
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>'});
私が使用するとき、私は明らかにそれの周りにいくつかのhtmlコードがあるのでalert(points[1]);
得ます...[object object]
この配列内のテキストを取得する方法を教えてもらえますか?「hi」または「hello」または「call」または「crow」としてのみ出力が必要です
ありがとうございました。