Как отладить JQuery в консоли? - PullRequest
1 голос
/ 11 марта 2019

Я смотрю на пример индикатора выполнения jQuery здесь: https://jqueryui.com/progressbar/

Вот код:

<html>
	<head>
  	<meta charset="utf-8">
  	<meta name="viewport" content="width=device-width, initial-scale=1">
  	<title>jQuery UI Progressbar - Default functionality</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>
  	<script>
			$(document).ready(function() { 
				$("#progressbar").progressbar({
					value: 76
				});
			});
 	 	</script>
	</head>
	<body>
		<h2>jQuery progress bar</h2>
		<div id="progressbar" class="bar"></div>
	</body>
</html>

Мой вопрос: как я могу поместить console.log где-нибудь, чтобы увидеть значение переменной value, равное 76?Я пробовал console.log(value), console.log($("#progressbar").value), console.log($("#progressbar").progressbar.value), ни одна из этих работ.

1 Ответ

2 голосов
/ 11 марта 2019

ваш progress bar принимает объект как param, поэтому вы можете сделать свой console.log следующим образом: the option и option name

для Пример для получениязначение: progressbar("option", "value")

ИЛИ

progressbar("value")

Рекомендую прочитать документацию для получения более подробной информации:

индикатор выполнения

$(document).ready(function() {

  $("#progressbar").progressbar({
    value: 76
  });

  //Get the progress bar value

  const value = $("#progressbar").progressbar("option", "value");

  console.log(value)
});
<html>

<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>jQuery UI Progressbar - Default functionality</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>
  <script>
  </script>
</head>

<body>
  <h2>jQuery progress bar</h2>
  <div id="progressbar" class="bar"></div>
</body>

</html>
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...