iframe의 document title.
Posted: 2005 05 23 17:04 29
<html>
<head>
<title>aaaa</title>
</head>
<body onLoad='httpsTest()'>
<script type='text/javascript'>
function httpsTest() {
TEST_IFRAME = document.getElementById('httpsTestFrame'); // test iframe
TEST_URL = 'https://www.domain.com:443/'; // test URL
TIME_OUT = 1000; // connection waiting in milliseconds
if(TEST_IFRAME != null) {
httpsTestConnect();
window.setTimeout('httpsTestCheck()', TIME_OUT);
}
}
function httpsTestConnect() {
TEST_IFRAME.src = TEST_URL;
}
function httpsTestCheck() {
alert(TEST_IFRAME.contentDocument.title);
}
</script>
<iframe id='httpsTestFrame' frameBorder=1 width=100 height=100/>
</body>
</html>
FF에서
에러: uncaught exception: HTMLDocument.title 1
이런 에러가 나네요.
구현하고자 하는 것은 특정 URL이 연결이 되는지 테스트해보는 것입니다.
위의 코드는 IFrame에 URL을 쏘고 1초 후에 Document를 검사하는 것인데
Document 접근이 안되네요.
<head>
<title>aaaa</title>
</head>
<body onLoad='httpsTest()'>
<script type='text/javascript'>
function httpsTest() {
TEST_IFRAME = document.getElementById('httpsTestFrame'); // test iframe
TEST_URL = 'https://www.domain.com:443/'; // test URL
TIME_OUT = 1000; // connection waiting in milliseconds
if(TEST_IFRAME != null) {
httpsTestConnect();
window.setTimeout('httpsTestCheck()', TIME_OUT);
}
}
function httpsTestConnect() {
TEST_IFRAME.src = TEST_URL;
}
function httpsTestCheck() {
alert(TEST_IFRAME.contentDocument.title);
}
</script>
<iframe id='httpsTestFrame' frameBorder=1 width=100 height=100/>
</body>
</html>
FF에서
에러: uncaught exception: HTMLDocument.title 1
이런 에러가 나네요.
구현하고자 하는 것은 특정 URL이 연결이 되는지 테스트해보는 것입니다.
위의 코드는 IFrame에 URL을 쏘고 1초 후에 Document를 검사하는 것인데
Document 접근이 안되네요.