如何在控制台中调试jQuery?

时间:2019-03-11 17:14:36

标签: javascript jquery html css console

我正在从这里查看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 个答案:

答案 0 :(得分:2)

您的progress bar将一个对象作为param,因此您可以这样操作console.logthe optionoption name

对于示例,获取值:progressbar("option", "value")

OR

progressbar("value")

我建议阅读文档以获取更多详细信息:

Progress bar

$(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>