我正在制作一个动态横幅系统,可以处理img横幅,以及使用object / embed完成的flash横幅.整个网站大量使用jQuery,包括处理“点击”事件.
在跟踪图像本身的点击时,这显然不是问题(我跟踪父DIV标签上的点击.但是,当广告是SWF时,它会失败,因为我怀疑它会.
是否有一个jQuery解决方法,允许我使用DOM捕获Flash元素的单击?
解决方法
如果您可以访问SWF源,则可以使用ExternalInterface与包含的html页面进行通信.
//inside the flash movie: stage.addEventListener(MouseEvent.CLICK,onClick); function onClick(e:MouseEvent):void { ExternalInterface.call("handleFlashClick",[parameters to the method]); } //javascript in the containing html page function handleFlashClick() { //call the jQuery method here. }