12345678910 |
- if (!window.configLoadLoop) {
- window.configLoadLoop = setInterval(function () {
- document.head.removeChild(document.getElementById('configJS'))
- const config = document.createElement('script')
- config.id = 'configJS'
- config.type = 'text/javascript'
- config.src = './config.js?t=' + new Date().getTime()
- document.head.appendChild(config)
- }, 60 * 1000)
- }
|