Video được đề xuất

MYBA-091 Nitori Hina, một phụ nữ đã kết hôn, lật cánh hoa","lastmod":"2026-07-11","duration":"01:23:03","url":"/play/19153213.html"},{"img":"https://cache.sgvafs.com/base/aHR0cHM6Ly92aWRlby5kYWdlLnRvcC9zdG9yYWdlL3VwbG9hZHMvMjAyNTAzMzEvMWRiMDA5NGY2ZTU1YjJlZDA1ZWFlMDNmMWZiMDMwMWYuanBn.cache","vod_id":19078111,"title":"[Bình luận AV] Sự tu dưỡng của những người hâm mộ tình yêu hoa phong.","lastmod":"2025-03-19","duration":"21:37","url":"/play/19078111.html"}]}, videoTitle: 'Bình luận viên bánh trái cây: Người phụ nữ đã kết hôn nghiện quan hệ tình dục thoáng qua', language: 'vi', dataKey: '01', loadingPlayer: true, showShare: false, pageUrl: '', // RecommendedMovies 组件状态 isSingleColumn: false, pageSize: 8, currentPage: 1, // 计算属性(使用 getter) get layoutIconClass() { return this.isSingleColumn ? 'icon-view-list' : 'icon-grid'; }, get layoutClass() { return [ 'row', 'g-3', 'row-cols-1', this.isSingleColumn ? '' : 'row-cols-2', 'row-cols-lg-4' ].filter(Boolean).join(' '); }, // 方法 onAppMounted() { // 设置页面 URL this.pageUrl = window.location.href; // 保存观看历史 this.saveWatchHistory(); // 更新标签统计 if (this.videoData.tag && this.videoData.tag.length > 0) { this.updateTagStats(this.videoData.tag); } // 发送点击统计 this.hitVideoId(this.videoData.id); // 从 Cookie 读取布局偏好 const layoutCookie = this.getCookie('list_layout'); if (layoutCookie === 'single') { this.isSingleColumn = true; } // 监听 iframe 加载完成,隐藏骨架屏 // 使用 setTimeout 确保 DOM 已完全渲染 setTimeout(() => { const iframe = document.getElementById('v2-player'); const skeleton = document.getElementById('player-skeleton'); if (iframe && skeleton) { // 定义隐藏骨架屏的函数 const hideSkeleton = () => { skeleton.style.transition = 'opacity 0.3s ease'; skeleton.style.opacity = '0'; setTimeout(() => { skeleton.style.display = 'none'; }, 300); }; // 检查 iframe 是否已经加载完成 if (iframe.contentDocument || iframe.contentWindow) { try { // 如果 iframe 已加载,直接隐藏骨架屏 if (iframe.contentWindow.document.readyState === 'complete') { setTimeout(hideSkeleton, 500); return; } } catch (e) { console.log('[Video] 跨域 iframe,无法检查状态:', e.message); // 跨域情况下无法访问 contentWindow,继续监听 load 事件 } } // 监听 load 事件 iframe.addEventListener('load', () => { console.log('[Video] iframe load 事件触发'); setTimeout(hideSkeleton, 500); }); // 添加超时保护,确保骨架屏最终会被隐藏 setTimeout(() => { if (skeleton.style.display !== 'none') { console.log('[Video] 超时保护触发,强制隐藏骨架屏'); hideSkeleton(); } }, 5000); // 5秒后强制隐藏 } else { console.error('[Video] 未找到 iframe 或 skeleton 元素'); } }, 0); }, // 随机跳转 async jumpToRandomVideo() { try { const response = await fetch(`/api/qun/randomid?t=${Date.now()}`, { headers: { 'x-data-key': this.dataKey, 'x-api-key': 'dagexxx.com' } }); const data = await response.json(); if (data?.status === 1 && data?.data?.id) { window.location.href = `/${this.language}/play/${data.data.id}.html`; } else { console.error('获取随机视频失败:', data?.message || '未知错误'); } } catch (err) { console.error('获取随机视频失败:', err); } }, // 复制分享链接 copyShareLink() { const input = this.$refs.shareInput; if (input) { input.select(); input.setSelectionRange(0, 99999); // For mobile devices // 尝试使用现代 API if (navigator.clipboard && navigator.clipboard.writeText) { navigator.clipboard.writeText(this.pageUrl).then(() => { alert('Đã sao chép liên kết!'); }).catch(() => { // 降级到旧方法 document.execCommand('copy'); alert('Đã sao chép liên kết!'); }); } else { // 降级到旧方法 document.execCommand('copy'); alert('Đã sao chép liên kết!'); } } }, // 切换布局 toggleLayout() { this.isSingleColumn = !this.isSingleColumn; this.setCookie('list_layout', this.isSingleColumn ? 'single' : 'multi', 30); }, // 加载更多 loadMore() { this.currentPage++; }, // 保存观看历史 saveWatchHistory() { try { const storageKey = 'watchHistory'; let history = JSON.parse(localStorage.getItem(storageKey) || '[]'); // 解码 HTML 实体编码的标题 const decodeHtmlEntities = (text) => { const textarea = document.createElement('textarea'); textarea.innerHTML = text; return textarea.value; }; const video = { id: this.videoData.id, title: decodeHtmlEntities(this.videoData.title), image: this.videoData.images || this.videoData.preview, duration: this.videoData.duration || '' }; // 过滤掉已存在的相同 ID 视频 history = history.filter(item => item.id !== video.id); // 添加新记录到最前面 history.unshift(video); // 限制最多保存 100 条 if (history.length > 100) { history = history.slice(0, 100); } localStorage.setItem(storageKey, JSON.stringify(history)); } catch (e) { console.error('Failed to save watch history:', e); } }, // 更新标签统计 updateTagStats(tags = []) { // HTML 实体解码函数 const decodeHtmlEntities = (text) => { const textarea = document.createElement('textarea'); textarea.innerHTML = text; return textarea.value; }; const storageKey = this.dataKey + 'tagWatchStats'; const lastWatchedKey = this.dataKey + 'tagLastWatched'; const raw = localStorage.getItem(storageKey); const stats = raw ? JSON.parse(raw) : {}; // 解码标签并统计 const decodedTags = tags.map(tag => decodeHtmlEntities(tag)); decodedTags.forEach(tag => { stats[tag] = (stats[tag] || 0) + 1; }); localStorage.setItem(storageKey, JSON.stringify(stats)); localStorage.setItem(lastWatchedKey, JSON.stringify(decodedTags)); }, // 点击统计 hitVideoId(id) { fetch(`/api/qun/hit?type=play&id=${id}`, { method: 'GET', headers: { 'x-data-key': this.dataKey, 'x-api-key': 'dagexxx.com' } }).catch(err => { console.error('点击统计失败:', err); }); }, // Cookie 工具方法 getCookie(name) { const value = `; ${document.cookie}`; const parts = value.split(`; ${name}=`); if (parts.length === 2) return parts.pop().split(';').shift(); }, setCookie(name, value, days) { const expires = new Date(Date.now() + days * 864e5).toUTCString(); document.cookie = `${name}=${value}; expires=${expires}; path=/`; } }; } </script> <div class="container mt-4"> <h5 class="fw-bold mb-2" id="translate">友情链接</h5> <div class="d-flex flex-wrap mb-4" id="script_seo_links"><a href="https://nc99.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">色道引擎</a><a href="https://hr69.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">抖阴破解</a><a href="https://np15.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">鉴黄师</a><a href="https://tw09.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">AV福利社</a><a href="https://bd13.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">果冻传媒</a><a href="https://of74.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">初晴导航</a><a href="https://cb83.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">AV剧集</a><a href="https://sa89.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">无广告视频</a><a href="https://kj21.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">桃色礼物</a><a href="https://bk30.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">蜜臀精品</a><a href="https://nj89.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">不止成人</a><a href="https://ni54.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">桃子视频</a><a href="https://as23.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">性都入口</a><a href="https://lu72.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">XVideos中文</a><a href="https://sy69.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">熟女阅览室</a><a href="https://wg56.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">百灵鸟在线</a><a href="https://nr68.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">娱乐城</a><a href="https://qt60.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">色库房</a><a href="https://jd20.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">撸sir</a><a href="https://ki43.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">美少女资源站</a><a href="https://pb95.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">蓝光超清</a><a href="https://xg98.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">二次元导航</a><a href="https://tv47.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">AV联盟</a><a href="https://ja47.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">免费资源</a><a href="https://cn78.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">粉嫩影院</a><a href="https://xs33.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">隔壁老王的站</a><a href="https://zo69.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">醉花视频</a><a href="https://xw42.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">启蒙岛师</a><a href="https://pc39.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">妹团外卖</a><a href="https://um39.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">看片导航宝</a><a href="https://lc13.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">微信在线</a><a href="https://rq45.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">600老司机</a><a href="https://ta16.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">含羞影院</a><a href="https://rk45.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">色妹站</a><a href="https://vf62.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">醉红楼</a><a href="https://vv51.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">孤独狼视频</a><a href="https://rl46.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">醉红楼</a><a href="https://kf35.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">万花王</a><a href="https://in47.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">观潮达人</a><a href="https://ib00.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">初恋之夜</a><a href="https://wk57.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">导航鸭</a><a href="https://mx35.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">熟女大全</a><a href="https://sk78.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">AV影院导航</a><a href="https://qt82.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">热力天堂</a><a href="https://ca81.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">北斗影视网</a><a href="https://gv24.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">AV名湿</a><a href="https://gu29.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">海角TV</a><a href="https://ga79.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">夜色岛</a><a href="https://ie72.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">啪啪入口</a><a href="https://ji52.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">6080影视</a><a href="https://gy93.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">影视研究所</a><a href="https://vl51.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">聚合影院</a><a href="https://na91.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">时光片场</a><a href="https://lm03.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">影院TV</a><a href="https://uz92.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">剧迷天堂</a><a href="https://jj10.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">蜂巢影院</a><a href="https://kt80.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">剧场世界</a><a href="https://lo11.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">幕后影视</a><a href="https://rq36.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">星球影院</a><a href="https://cr73.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">热播影视网</a><a href="https://jq98.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">极速电影网</a><a href="https://us32.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">看片基地</a><a href="https://nn55.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">影视码头</a><a href="https://cw06.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">免费影视</a><a href="https://wl77.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">全网影院</a><a href="https://qz58.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">看看视频</a><a href="https://dj26.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">奶茶影视</a><a href="https://ut93.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">1080p影视</a><a href="https://xu06.sbs" target="_blank" class="d-inline-block px-2 py-2 me-2 mb-2 rounded bg-light text-dark text-decoration-none border">万象观影中心</a></div> </div> </div> <!-- End Main Content --> <!-- Footer --> <footer class="bg-dark text-light py-4 mt-5"> <div class="container"> <div class="row"> <div class="col-md-6"> <h5 class="navbar-brand"> <span class="text-uppercase fw-bold text-primary">DGAV</span><span class="text-danger">12</span> </h5> <p class="text-white">Trang web video người lớn Nhật Bản tốt nhất, JAV miễn phí vĩnh viễn, tốc độ cực cao, không chậm trễ, hơn 100.000 video, được cập nhật hàng ngày, không có quảng cáo khi xem video.</p> </div> </div> <hr class="bg-light"> <div class="text-center"> <p class="mb-0 text-white">© 性秘. All rights reserved.</p> </div> </div> </footer> <!-- Bootstrap JS --> <script src="/js/bootstrap.5.3.0.min.js"></script> <script src="/js/main.js?t=2"></script> <script>var s=document.createElement('script');s.src='/js/lianmeng.js?'+new Date().getTime();document.head.appendChild(s);</script> <script type="text/javascript" src='/js/tongji.js?t=1' async></script> </body> </html>