# readystate **Repository Path**: qq_music_front_end/readystate ## Basic Information - **Project Name**: readystate - **Description**: document.readyState 封装 - **Primary Language**: JavaScript - **License**: MulanPSL-1.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-12-30 - **Last Updated**: 2022-06-20 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # readyState 监听文档加载状态变更 ```bash npm i -S @qmfe/readystate ``` ```js import readyState from '@qmfe/readystate'; readystate.loading(() => { console.log('loading'); }); readystate.complete(() => { console.log('complete'); }); readystate.interactive(() => { console.log('interactive'); }); ```