Jump to content
  • 0

Глобальная переменная


uefa
 Share

Question

Подскажите, пожалуйста, достаточно ли вынести объявление переменной за все функции, чтобы она была глобыльной и была видна в любой функции для использования. У меня почему-то такая переменная после выполнения нескольких функций становтся "undefined". Помогите. Не пойму, где копать. Если нужен код - предоставлю...

Спасибо.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0
По идее достаточно, но лучше покажи код, хотябы куски с этой твоей переменной...

Ты кстати при объявлении переменной var пользуеш?

Вот привожу куски:

HTML

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
</head>
<body onload="init_Menu(new Array(''), '');">

<form>
<select onchange="change_Menu(this.value);">
<option value="....">.....</option>
.....
</select>
</form>
</body>
</html>

JScript

var checkedValue;
function init_Menu(checkedValue, countrySel)
{
if (checkedValue.length == 0)
{
checkedValue[0] = "AAA";
checkedValue[1] = "BBB";
}
if (countrySel == "") countrySel = 0;
var countryId = checkedValue[countrySel];
.........
}

function change_Menu(valueStr)
{
alert(typeof (checkedValue));
}

Код, конечно, условный. Но суть такая. Если для функции init_Menu переменная checkedValue существует, то в функции change_Menu она уже undefined.

Как же объявить переменную, которая будет видна во всех функциях и будет хранить необходимое значение на протяжении всей сессии?

Спасибо.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy