@maminahikk

Не работает кнопка в js,что делать?

const questions = [
	{
		question: "Как звали солиста группы Синдром Восьмилкассника?",
		answers: ["Давид Сайфуллоев", "Юрий Каплан", "Кирилл Бледный", "Альберт Кабуу"],
		correct: 4,
	},
	{
		question: "Что означает CSS?",
		answers: [
			"Central Style Sheets",
			"Cascading Style Sheets",
			"Cascading Simple Sheets",
			"Cars SUVs Sailboats",
		],
		correct: 2,
	},
	{
		question: "Что означает HTML?",
		answers: [
			"Hypertext Markup Language",
			"Hypertext Markdown Language",
			"Hyperloop Machine Language",
			"Helicopters Terminals Motorboats Lamborginis",
		],
		correct: 1,
	},
	{
		question: "В каком году был создан JavaScript?",
		answers: ["1996", "1995", "1994", "все ответы неверные"],
		correct: 2,
	},
];

 //Поиск элементов
const headerContainer = document. querySelector('#header');
const listContainer = document. querySelector('#list')
const submitBtn = document. querySelector('#submit')

//Переменные?!//
let score = 0; //Количество правельных ответов(навчерное )//
let questionIndex = 0; //Какой щас вопрос//
//Отчиска и показ вопроса//
clearPage()
showQuestion()
submitBtn.onclick = checkAnswer;

//Чистка страницы//
function clearPage(){
	headerContainer.innerHTML = "";
	listContainer.innerHTML = "";
}
//Вывод вопросов и ответов//
function showQuestion(){ 
//Вопрос 
const  headerTemplate =`<h2 class="title">%title%</h2>`;
const title = headerTemplate.replace("%title%",questions[questionIndex]["question"])
headerContainer.innerHTML = title;


//Варианты 	ответов
for (answerText of questions[questionIndex]["answers"]){
 const questionTemplate =
     `<li>
            <label>
	         <input type="radio" class="answer" name="answer" />
	          <span>%answer%</span>
          </label>
      </li>`
	 const answerHTML= questionTemplate.replace("%answer%",answerText)
listContainer.innerHTML +=answerHTML;


}

function _сheckAnswer() { 
	console.log(started);
}






 












}
<!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>Simple Quiz</title>
	<link rel="stylesheet" href="./main.css" />
</head>
<body>
	<form>
	<div class="quiz" id="quiz">

		<div class="quiz-header" id="header">
			<!-- Заголовок вопроса -->
			<h2 class="title">Загружаем вопрос...</h2>

			<!-- Результаты викторины -->
			<h2 class="title">%title%</h2>
			<h3 class="summary">%message%</h3>
			<p class="result">%result%</p>
		</div>

		<ul class="quiz-list" id="list">
			<li>
				<label>
					<input type="radio" class="answer" name="answer" />
					<span>Ответ...</span>
				</label>
			</li>
			<li>
				<label>
					<input type="radio" class="answer" name="answer" />
					<span>Ответ...</span>
				</label>
			</li>
		</ul>
 
		<button class="quiz-submit submit"  onclick="qwer778833"          id="submit">Ответить</button>

	</div>

	<script src="./main.js"></script>
</form>
</body>
</html>
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap");

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-size: inherit;
}

body {
	font-family: "Noto Sans", sans-serif;
	font-size: 16px;

	/* https://cssgradient.io/gradient-backgrounds/ */
	background: #c6ffdd;
	background: linear-gradient( to right, #f7797d, #fbd786, #c6ffdd );

	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.quiz {
	position: relative;
	padding: 2rem 2rem calc(2rem + 70px);

	background-color: #fff;
	border-radius: 8px;
	box-shadow: 0 0 10px 2px rgba(100, 100, 100, 0.1);
	width: 600px;
	max-width: 95vw;
	overflow: hidden;
}

.title{
	font-size: 1.5rem;
	padding: 1rem 0;
	text-align: center;
	margin: 0;
}

.summary {
	text-align: center;
	margin: 0.5rem 0 1rem;
	font-size: 1.2rem;
	font-weight: 400;
}

.result {
	text-align: center;
	font-size: 1.2rem;
	font-weight: 700;
}

.quiz-list {
	list-style-type: none;
	padding: 0;
}

.quiz-list li {
	font-size: 1.2rem;
}

.quiz-list label {
	cursor: pointer;
	width: 100%;
    display: block;
	padding: 1rem 0.5rem;
}

.quiz-list label:hover {
	background-color: seashell;
}

.quiz-list label.correct {
	color: rgb(36, 144, 77);
	font-weight: bold;
}

.quiz-list label.disabled {
	cursor: no-drop;
}

.quiz-list label.disabled:hover {
	cursor: no-drop;
	background-color: transparent;
}

.quiz-list label.wrong {
	color: rgb(218, 59, 59);
	font-weight: bold;
}

.quiz-list input[type="radio"] {
	margin-right: 10px;
}

.quiz-submit {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 70px;
	line-height: 70px;
}

.submit {
	background-color: #8e44ad;
	color: #fff;
	border: none;
	display: block;
	width: 100%;
	cursor: pointer;
	font-size: 1.1rem;
	font-family: inherit;

}

.submit:hover {
	background-color: #732d91;
}

.submit:focus {
	outline: none;
	background-color: #5e3370;
}

.submit.next {
	background-color: #000000;
}

.submit.next:hover {
	background-color: #222222;
}

.submit.next:focus {
	outline: none;
	background-color: #444444;
}

.quiz-list.shake {
	animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
	transform: translate3d(0, 0, 0);
	backface-visibility: hidden;
	perspective: 1000px;
	color: #94ca00;
}

@keyframes shake {
	10%,
	90% {
		transform: translate3d(-1px, 0, 0);
	}
	20%,
	80% {
		transform: translate3d(2px, 0, 0);
	}
	30%,
	50%,
	70% {
		transform: translate3d(-4px, 0, 0);
	}
	40%,
	60% {
		transform: translate3d(4px, 0, 0);
	}
}
  • Вопрос задан
  • 106 просмотров
Пригласить эксперта
Ответы на вопрос 1
deleo99
@deleo99
<button class="quiz-submit submit" onclick="qwer778833" id="submit">Ответить</button>


потому что по клику она вызывает что-то странное
Ответ написан
Ваш ответ на вопрос

Войдите, чтобы написать ответ

Войти через центр авторизации
Похожие вопросы