显示json_encode结果以在html中输入标签

时间:2018-10-01 06:12:41

标签: javascript php jquery html

所以我有这个问题,我想在输入标签中显示json结果。我尝试了此Answer,但结果不正确。

这是json数据:

["FAAS FRONT & BACK","NOA & TAX BILL"]

这是结果:

Result

您可以看到每个字符都在输入框中。我该怎么解决?

结果应该是这样的:

This should be the result

1 个答案:

答案 0 :(得分:2)

在JS上,尝试使用

data = JSON.parse(data);

因此您可以将其用作对象。