.main-page-title{display: none;} // 创建并插入 iframe function insertAzureDragon(targetSelector) { const container = document.querySelector(targetSelector) if (!container) return const iframe = document.createElement('iframe') iframe.id = 'azure-dragon-iframe' // 设置 iframe 属性 iframe.setAttribute('src', 'http://localhost:8081/?t=' + Math.random()) iframe.style.border = 'none' // 移除边框 iframe.style.width = '100%' // 设置宽度 iframe.style.height = '500' // 初始高度为0 // 处理 iframe 通信和自适应高度 window.addEventListener('message', function (event) { // 确保消息来源安全 if (event.data.type === 'azure-dragon-height') { // 根据内容调整 iframe 高度 iframe.style.height = event.data.height + 'px' } }) container.appendChild(iframe) } // 使用方法 document.addEventListener('DOMContentLoaded', function () { insertAzureDragon('#root-azure-dragon') })