以下のコードは単純な jquery プログレス バーです。ajaxStart で進行状況の値 (現在は 67 式) を動的に更新し、ajaxStop() でこの値を 100 に到達させる方法はありますか?
<head><script src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function() {
$( "#progressbar" ).progressbar({
**value: 67**
});
});
</script>
</head>
<body>
<div id="progressbar"></div>
</body>