📅  最后修改于: 2023-12-03 15:02:11.940000             🧑  作者: Mango
jQuery UI Progressbar 是 jQuery UI 中提供的进度条插件。option() 方法可以用于设置或获取 Progressbar 的属性值,例如 value、max、disabled 等。该方法可以接收一个参数 optionName,表示要设置或获取的属性名。如果未提供 optionName,则返回 Progressbar 的所有属性。该方法返回一个 jQuery 对象,可以方便地进行链式调用。
$( ".selector" ).progressbar( "option", optionName )
$( ".selector" ).progressbar( "option", optionName, value )
$( ".selector" ).progressbar( "option", options )
该方法返回一个 jQuery 对象,可以方便地进行链式调用。
var value = $( "#progressbar" ).progressbar( "option", "value" );
var max = $( "#progressbar" ).progressbar( "option", "max" );
var disabled = $( "#progressbar" ).progressbar( "option", "disabled" );
$( "#progressbar" ).progressbar( "option", "value", 50 );
$( "#progressbar" ).progressbar( "option", "max", 100 );
$( "#progressbar" ).progressbar( "option", "disabled", true );
$( "#progressbar" ).progressbar({
value: 50,
max: 100,
disabled: true
});