jquery ui progressbarはシンプルにdeomを使います.

1707 ワード

jquery appiとダウンロード: http://api.jqueryui.com/progressbar/#option-value
jquery ui progressbar简单使用deom_第1张图片 jQuery UI Progressbar - Indeterminate Value $(function() { $( "#progressbar" ).progressbar({ value: false }); $( "button" ).on( "click", function( event ) { var target = $( event.target ), progressbar = $( "#progressbar" ), progressbarValue = progressbar.find( ".ui-progressbar-value" ); if ( target.is( "#numButton" ) ) { progressbar.progressbar( "option", { value: Math.floor( Math.random() * 100 ) }); } else if ( target.is( "#colorButton" ) ) { progressbarValue.css({ "background": '#' + Math.floor( Math.random() * 16777215 ).toString( 16 ) }); } else if ( target.is( "#falseButton" ) ) { alert('dd'); progressbar.progressbar( "option", "value", 50 ); } }); });