반응형
함수 외부에 변수를 선언합니다.
var oneVariable;
function setVariable(){
oneVariable = "Variable set from within a function!";
}
function getVariable(){
alert(oneVariable); // Outputs "Variable set from within a function!"
}
또는 창 개체에 첨부합니다.
function setValue() {
window.myValue = "test";
}
function getValue() {
alert(window.myValue); // "test" (assuming setValue has run)
}
'css' 카테고리의 다른 글
PHP를 사용하여 CSS 압축 (0) | 2021.10.12 |
---|---|
디자인에서 웹 디자인으로 인쇄: 비교 유사성 (0) | 2021.10.12 |
스크롤-팔로우 사이드바, 여러 가지 기법 (0) | 2021.10.10 |
시간 간격에 따라 기능 수행 (0) | 2021.10.10 |
Firefox의 RSS 피드 소스 보기 (0) | 2021.10.10 |
댓글