确定进度条
不确定进度条
$(selector, context).progressbar(options)
$(selector, context).progressbar("action", params)
$(selector, context).progressbar(options);
$(selector, context).progressbar({option1: value1, option2: value2..... });
选项 | 说明 |
disabled | 如果将此选项设置为true,则它将禁用进度条。默认情况下,其值为false。 |
max | 此选项用于设置进度条的最大值。默认情况下,其值为100。 |
value | 此选项指定进度条的初始值。默认情况下,其值为0。 |
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI ProgressBar functionality</title>
<link href="http://code.jquery.com/ui/1.10.4/themes/ui-lightness/jquery-ui.css" rel="stylesheet">
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<style>
.ui-widget-header {
background: blue;
border: 1px solid #DDDDDD;
color: #333333;
font-weight: bold;
}
</style>
<script>
$(function() {
$( "#progressbar-1").progressbar({
value: 30
});
});
</script>
</head>
<body>
<div id="progressbar-1"></div>
</body>
</html>