从 ajax 响应中,我得到了一个对象,如下所示——
"highlighting":{
"http://example.com/test1":{
"content":["sample content 1"],
"title":["sample title1"]},
"http://example.com/test2":{
"content":["sample content2"],
"title":["sample title1"]
}
}
}
你能告诉我如何获得“http://example.com/test*”吗?我可以循环搜索“内容”、“标题”,但是“http://example.com/test*”,因为没有与之关联的名称。
谢谢!