tl;dr:如何在其他函数中重用第一个函数?如果在其他函数中调用,它会一直返回 undefined。
我创建了在线帮助(我不是程序员),不幸的是,它是由 Adobe RoboHelp 在框架集中输出的。我想使用下面的第一个函数(getURL)来动态构建一个可以在其他函数中重用的 URL。例如,在一个函数中将“a”参数作为图形传递,或者使用它将框架集中的页面作为 mailto: 链接发送到另一个函数中。
我遇到的问题是从其他函数中调用 getURL 函数;fullURL 值作为未定义返回。
function getURL(a) {
var frameURL = window.frames[1].frames[1].document.location,
frameareaname = frameURL.pathname.split('/').slice(4, 5),
frameprojname = frameURL.pathname.split('/').slice(6, 7),
protocol_name = window.location.protocol,
server_name = window.location.host,
fullURL = protocol_name + '//' + server_name + '/robohelp/robo/server/' + frameareaname + '/projects/' + frameprojname + '/' + a;
return fullURL;
}
如果我像这样调用函数,它可以正常工作,但如果我将它放在函数中则不行:
getURL('light_bulb.png');
console.log(fullURL);
如何在另一个函数中重用这个函数?例如,fullURL 应该是背景图片:
$('.Graphic, .GraphicIndent, .Graphic3rd, .Graphic4th').not('.Graphic-norollover').mouseover(function()
{
var imgWidth = $(this).children('img').width();
$(this).css('background', 'url(' + fullURL + ') 50% 50% no-repeat #000');
$(this).css('width', imgWidth);
$(this).children('img').fadeTo(750, '.4');
$(this).children('img').attr('alt', 'Click to view full-size graphic');
$(this).children('img').attr('title', 'Click to view full-size graphic');
});
谢谢!