我试图找到正在用于其他网站的JavaScript函数的位置,并且我无法通过FireBug找到此函数。我可以在DOM中看到这一点,但它并没有为我提供这个功能。
以下是网站:www.williamsprofessionalpainting.com
这是函数:OpenViewer
这只是一个锚点标记的onClick方法,可以打开PDF文档。
如果有人可以帮我找到这个功能,我会非常感激。
或者,如果有更好的JQuery解决方案,我实际上更喜欢这个选项。我已经搜索过,但似乎无法找到替代方案。
答案 0 :(得分:1)
它位于global.js文件中。它只是使用锚点的路径作为url包装window.open()。
function OpenViewer(path)
{
if(path != "")
window.open(path,"SurveyViewer","toolbar=0,menubar=0,location=0,width=800,height=640,resizable=1");
else
alert("NO PATH!");
}
答案 1 :(得分:0)
function OpenViewer(path)
{
if(path != "")
window.open(path,"SurveyViewer","toolbar=0,menubar=0,location=0,width=800,height=640,resizable=1");
else
alert("NO PATH!");
}
使用Chrome Javascript控制台。