- 제출된 URL:
- https://on02.4gozineh.com/
- 보고서 완료:
링크 · 0개 결과
페이지에서 식별된 외부 링크
JavaScript 변수 · 3개 결과
페이지의 창 개체에 로드된 전역 JavaScript 변수는 함수 외부에서 선언된 변수로, 현재 범위 내에서 코드의 어느 부분에서나 액세스할 수 있습니다
이름 | 유형 |
---|---|
onbeforetoggle | object |
documentPictureInPicture | object |
onscrollend | object |
콘솔 로그 메시지 · 0개 결과
웹 콘솔에 기록된 메시지
HTML
페이지의 원시 HTML 본문
<!DOCTYPE html><html lang="en"><head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>4Gozineh</title>
<style>
.error-div {
background-color: #f2dede;
padding: 15px;
border-radius: 10px;
border-color: #ebccd1;
}
.error-div-title {
font-size: 25px;
}
.error-message {
color: #a94442;
font-size: 15px;
margin-top: 2px 0 0 0;
}
</style>
</head>
<body style="margin:0">
<div style="display: flex; height: 100vh; margin: 0; flex-direction: column; align-items: center; justify-content: center;">
<h1 id="welcome-message">Welcome to 4Gozineh!</h1>
</div>
<script>
const ERRORS_QUERY_LABLE = "errors"
const queryString = decodeURI(window.location.search).slice(1);
const positionError = queryString.indexOf(ERRORS_QUERY_LABLE);
let jsonString;
if (positionError !== -1) {
jsonString = JSON.parse(queryString.slice(positionError + ERRORS_QUERY_LABLE.length + 1));
const welcomeMessage = document.querySelector('#welcome-message');
const errorContainer = document.createElement('div');
errorContainer.classList.add("error-div");
welcomeMessage.before(errorContainer);
for (let i in jsonString) {
const newError = document.createElement('p')
newError.classList.add("error-message");
newError.innerText = "Error: " + jsonString[i].message;
errorContainer.appendChild(newError);
}
welcomeMessage.remove();
const bigBlueButton = document.createElement('h1');
bigBlueButton.innerHTML = "BigBlueButton";
errorContainer.before(bigBlueButton);
}
</script>
</body></html>