日期:2014-05-17  浏览次数:20803 次

struts2、dwz 如何实现进度条
近来做一个项目,使用的框架有前台显示框架dwz、Struts2、hibernate、spring等,现在有这样的需求,就是有一个方法,执行大概需要两分多钟,但是具体时间不确定。那么,我需要加一个进度条来告诉用户方法正在执行、以及大概的进度情况。
哪位大侠能给点建议,我使用什么技术或是插件会比较好呢?谢谢!
------解决方案--------------------
jquery 进度条
------解决方案--------------------
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Progressbar - Custom Label</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.10.4/themes/smoothness/jquery-ui.css">
<script src="//code.jquery.com/jquery-1.9.1.js"></script>
<script src="//code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css">
<style>
.ui-progressbar {
position: relative;
}
.progress-label {
position: absolute;
left: 50%;
top: 4px;
font-weight: bold;
text-shadow: 1px 1px 0 #fff;
}
</style>
<script>
$(function() {
var progressbar = $( "#progressbar" ),
progressLabel = $( ".progress-label" );

progressbar.progressbar({
value: false,
change: function() {
progressLabel.text( progressbar.progressbar( "value" ) + "%" );
},
complete: function() {
progressLabel.text( "Complete!" );
}
});

function progress() {
var val = progressbar.progressbar( "value" ) 
------解决方案--------------------
 0;

progressbar.progressbar( "value", val + 1 );

if ( val < 99 ) {
setTimeout( progress, 100 );
}
}

setTimeout( progress, 3000 );
});
</script>
</head>
<body>

<div id="progressbar"><div class="progress-label">Loading...</div></div>


</body>
</html>
 

------解决方案--------------------
看 api
$(function() {
        var progressbar = $( "#progressbar" ),
            progressLabel = $( ".progress-label" );
 
        progressbar.progressbar({
            value: false,
            change: function() {
                //从1 到100 %
         progressLabel.text( progressbar.progressbar( "value" ) + "%" );
            },
            //完成后
            complete: function() {
                progressLabel.text( "Complete!" );