如何从JSON对象获取HTML元素,内容或参数
这个问题在这里已经有了答案:
尝试使用
result.rss.channel.item[0].description
因为从这个例子看来,item是一个对象数组。
你可以用jQuery来做到这一点。
var $div = $('<div/>').html(obj.rss.channel.item[0].description);
var $img = $div.find('img')
$scope.imgSrc = $img.attr('src')
http://jsfiddle.net/h6mp1o56/
[更新:没有jQuery]
var div = angular.element('<div/>').html(obj.rss.channel.item[0].description);
var img = div.find('img')
$scope.imgSrc = img.attr('src')
http://jsfiddle.net/h6mp1o56/1/
链接地址: http://www.djcxy.com/p/31735.html上一篇: How to get HTML elements, content or parameters from JSON object
下一篇: How can I get a specific value from a JSON string in JavaScript?