第三方账号快速登录
<script> (function() { // 1. 弹窗类封装(参考[1,4](@ref)的类封装思想) class DeviceAlert { constructor() { this.alertBox = this.createAlertHTML(); this.countdown = 10; this.timer = null; document.body.appendChild(this.alertBox); } // 2. 创建弹窗DOM结...