1

tl;dr:如何在其他函数中重用第一个函数?如果在其他函数中调用,它会一直返回 undefined。

我创建了在线帮助(我不是程序员),不幸的是,它是由 Adob​​e 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');
  });

谢谢!

4

2 回答 2

3

fullURL是从 中返回的内容getURL,因此在需要值时调用该函数:

var imageURL = getURL('some_image.png');

fullURL之外不存在getURL

于 2013-07-19T16:13:31.460 回答
1

您必须调用该函数才能使用它:

  $('.Graphic, .GraphicIndent, .Graphic3rd, .Graphic4th').not('.Graphic-norollover').mouseover(function()
  {
    var imgWidth = $(this).children('img').width();
    $(this).css('background', 'url(' + getURL('light_bulb.png') + ') 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');
  });

fullURL仅限于getURL函数的范围。它在其他任何地方都看不到。您必须调用getURL才能获得函数的结果。

于 2013-07-19T16:13:20.287 回答