Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript에서 이름 문자열로 전역 변수를 동적으로 가져오시겠습니까?

<시간/>

alert(window())를 사용하여 경고에 표시합니다. 다음은 구문입니다 -

alert(window['yourVariableName' + 'yourVariableName' + otherVariableName]);

예시

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
</head>
<body>
<script>
   var globalVariablelocal_print100=100;
   print100=1;
   alert(window['globalVariable' + 'local_' + print100]);
</script>
</body>
</html>

위의 프로그램을 실행하려면 파일 이름을 anyName.html(index.html)로 저장하세요. 파일을 마우스 오른쪽 버튼으로 클릭하고 VS 코드 편집기에서 라이브 서버로 열기 옵션을 선택합니다.

출력

JavaScript에서 이름 문자열로 전역 변수를 동적으로 가져오시겠습니까?