Jquery/Js:选择并导航到嵌入 Flash 元素中的链接
我想为 Greasemonkey (GM) 制作一个脚本,用于在嵌入 Flash 元素的链接中查找和导航。
我认为可以使其与函数 .click() 一起使用,但不起作用:(
这是包含 flash 元素的页面的源代码.. 源代码
可以使其工作吗?
提前致谢。
卢卡。
I would like make a script for Greasemonkey (GM),that find and navigate in a link embed in a flash element.
I think that is possible to make it to work with function .click() ,but won't work :(
Here's the source code of the page that contains flash elements..
Source code
Is possible to make that to work?
Thanks in advance.
LUCA.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Flash 在浏览器内的插件内部运行,因此从外部代码的角度来看,它是一个黑匣子。能够以编程方式访问嵌入在 Flash 元素中的链接的唯一方法是让 Flash 对象通过 loadvars 将链接传递到脚本。
Flash runs inside of a plugin within the browser, so from an external code point of view it's a black box. The only way to be able to programatically access a link embedded within a Flash element is to have the Flash object pass the link to your script via loadvars.