我从一个看起来像这样的SQL查询中获取json:
$zips[$i] = "{\"type\" : \"Feature\",\"properties\": { \"name\" : \"{$row["Name"]}\"},{$row["RegionCenterGeoJSON"]}}";
并且在Name的位置返回如下的邮政编码:
{"name" : "77002"} //with the rest of the response around it
在json。我需要做的不仅仅是我想要的邮政编码:
{"name" : “<span id=’map_label’>77060</span>”
我需要这个,因为我使用leaflet和mapquest并使用这些信息来添加东西并动态调整它们......并且能够使用jquery做这样的事情:
$(‘#map_label’).each(function() {
$(this).css(‘font-size’, ‘20px’);
}
之前我已经完成了这项工作,但我有1个json项目并手动将zip更改为我需要的内容,但现在我想在代码中使用json中的数百个项目。有没有办法在PHP中执行此操作?我试着这样做:
{$row["<span id = 'map_label'>"'Name'"</span>" ]}
但没有运气