通过 .swf 文件从网页中获取标题标签的内容
Posted
技术标签:
【中文标题】通过 .swf 文件从网页中获取标题标签的内容【英文标题】:Get the content of title tag from a webpage through .swf file 【发布时间】:2015-11-03 00:49:03 【问题描述】:我需要使用 Flash 横幅从网页调用标题标签。 我想使用标题标签作为横幅的内容。
我正在研究 flash.external.ExternalInterface.call,但正在努力解决如何通过它调用 getElementsbyTagName。
任何帮助将不胜感激。
谢谢。
【问题讨论】:
到目前为止你做了什么? 【参考方案1】:没有必要使用getElementsByTag
或getElementById
,你可以使用document.title
。
这应该可以解决问题:
if(ExternalInterface.available)
var title:String = ExternalInterface.call("document.title");
【讨论】:
@Dylan,这对你有用吗?如果是这样,请考虑接受答案,因为它可以帮助未来的访问者以上是关于通过 .swf 文件从网页中获取标题标签的内容的主要内容,如果未能解决你的问题,请参考以下文章