我正在使用另一个开发人员的代码,客户要求我对其进行升级。我需要做的是使用 Jquery 来检索 PHP 文件的生成内容并解析它们,以便我可以在页面中使用文件中的元素。生成的内容为 JSON 格式,如下所示:
{
"productid": "3621",
"id": "24",
"title": "Oak+Veneer+26mm",
"description": "Oak+Veneer%2C+26mm+width%2C+21mm+deep%2C+14mm+rebate",
"mouldingimage": "L1545a.jpg",
"frameimagetop": "L1545_top.jpg",
"frameimagebottom": "L1545_bottom.jpg",
"frameimagevertical": "L1545_vert.jpg",
"unitprice": "0.18",
"banda": {},
"bandb": {},
"bandc": {},
"bandd": {},
"bande": {},
"notes": {},
"code": "L1545",
"deliveryperiodid": "107",
"deliverybandid": "64",
"supplierid": "115",
"date": "2011-10-07+16%3A27%3A32",
"active": "0",
"previousunitprice": {}
}
我需要从上面的数据中获取 'frameimagetop' 的值,然后使用它来设置 div 的背景图像。
我试过做以下变体,但我无法让它工作:
$.getJSON('/getframedata.php', {
id: $(this).attr("id")
}, {
get_param: 'frameimagetop'
}, function (data) {
$.each(data, function (index, element) {
$('#frame_top').append($('<div>', {
text: element.name
}));
我知道上面不会设置 div 的背景图像,但目前,我什至无法让它打印出文本。