0
我需要清除HTML包含中的跨度元素,並通過this example。但是它只是返回包含的第一個純文本字符串,並刪除其他所有內容(include包含超過十幾個我希望保留的href鏈接)。AngularJS:包括清潔dom元素
$scope.footermenu = function() {
$http.get('includes/mainmenu.html').success(function(data) {
var menusrc = data;
$(menusrc).find('span').remove();
var nospans = $(menusrc).html();
return nospans;
});
};
});