在功能中警告变量

时间:2014-10-13 15:22:59

标签: javascript

我创建了一个包含参数的函数,并且我在另一个函数中警告响应,这就是为什么我创建一个全局变量“imageServer”并且我想在“AlertFunction”函数中警告imageServer。

var imageServer ;

function win(r) 
{
    console.log("Response = " + r.response);       
    imageServer = r.response;

}

function AlertFunction()
    {
    alert(imageServer);
    }

我想提醒“AlertFunction”功能中的r.response,但没有显示

1 个答案:

答案 0 :(得分:0)

您必须从获胜功能中调用警报功能。

function win(r) 
{
console.log("Response = " + r.response);       
imageServer = r.response;
AlertFunction()
}