我有一个 jQuery 代码,
<script type="text/javascript">
$.idleTimeout('#idletimeout', '#idletimeout a', {
idleAfter: 3,
pollingInterval: 2,
keepAliveURL: 'keepalive.php',
serverResponseEquals: 'OK',
onTimeout: function(){
$(this).slideUp();
window.location = "timeout.htm";
},
onIdle: function(){
$(this).slideDown(); // show the warning bar
},
onCountdown: function( counter ){
$(this).find("span").html( counter ); // update the counter
},
onResume: function(){
$(this).slideUp(); // hide the warning bar
}
});
//
</script>
现在,如果我调用它,它会隐藏滑块。
function loadXMLDoc(message)
{
$.get("test1.php?data="+message, function(result){
$('#idletimeout').slideUp(); // hide
});
}
</script>
有没有办法在loadXMLDoc函数中调用onResume函数(在顶部)?谢谢。