该demo为iframe嵌套同源地址下的demo 约束:该场景下支持弹窗模式,支持仅有一个iframe嵌套情况下贴片使用,若引入多个iframe,则不支持贴片模式使用 使用过程中需要注意的点: 第一点: 在父页面中手动将userCode拼在title后面 ```javascript let timer = setInterval(function(){ if(window.$ws){ document.title += "-" + window.$ws.userCode; clearInterval(timer); } },50) ```