вы можете попробовать это, хотя это и не идеально, но работает хорошо.
html.htmlText = "";
super.removeElement(html);
html = null;
, что означает, что html будет gc через некоторое время.
, если вы хотите немедленно получить gc,Вы можете вызвать System.gc () вручную, например:
html.htmlText = "";
html.addEventListener(Event.LOCATION_CHANGE, html_locationChangeHandler);
super.removeElement(html);
html = null;
private function html_locationChangeHandler(event:Event):void
{
super.callLater(function():void{System.gc();});
}