asp.net 进度条问题!
这是写在源代码的一段代码: // demo 5
$find('mdp').add_shown(function(){
$find('ProgressControl12').play();
// hide it after 5 seconds
window.setTimeout(function(){
$find('mdp').hide();
}, 5000);
});
$find('mdp').add_hidden(function(){
$find('ProgressControl12').stop();
});
其中$find() play() hide() 是什么,请说清楚些。不胜感激!