20 lines
661 B
HTML
20 lines
661 B
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<title>Test Console Errors</title>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<iframe id="app" src="http://localhost:8000" style="width: 100%; height: 100vh; border: none;"></iframe>
|
||
|
|
<script>
|
||
|
|
const iframe = document.getElementById('app');
|
||
|
|
iframe.onload = function() {
|
||
|
|
console.log('Iframe loaded');
|
||
|
|
// 尝试捕获 iframe 中的控制台错误
|
||
|
|
iframe.contentWindow.onerror = function(message, source, lineno, colno, error) {
|
||
|
|
console.error('Iframe error:', message, source, lineno, colno, error);
|
||
|
|
return true;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
</script>
|
||
|
|
</body>
|
||
|
|
</html>
|