creditDetail.js
345 Bytes
define(function( require, exports, module ) {
/*
引入包
*/
$(function(){
var clock = setTimeout( function(){
$( ".manage-hint" ).slideUp();
}, 10000 );
$( ".manage-hint .hide" ).bind( "click", function(){
clearTimeout( clock );
$(this).parent().slideUp();
} );
});
});