|
- <iframe id="myFrame" src=https://player.bilibili.com/player.html?bvid={1} style="width: 800px; height: 450px; border: none;"></iframe>
- <script>
- (function() {
- const iframe = document.getElementById('myFrame');
- iframe.onload = function() {
- try {
- const iframeDocument = iframe.contentWindow.document;
- // 阻止 iframe 内部的超链接点击事件
- iframeDocument.addEventListener('click', function(e) {
- const link = e.target.closest('a');
- if (link) {
- e.preventDefault();
- console.log('Link click blocked:', link.href);
- }
- }, true);
- // 阻止 iframe 内部的表单提交事件
- iframeDocument.addEventListener('submit', function(e) {
- e.preventDefault();
- console.log('Form submission blocked');
- }, true);
- } catch (error) {
- console.error('无法访问 iframe 内容,可能是跨域问题:', error);
- }
- };
- })();
- </script>
复制代码
|
温馨提示:本站无需登入,即可回复帖子,发帖和回复请勿涉及违法等行为!网罗天下电脑(wltxdn.com)
|