[新着] Webテンプレートを仮オープンしました
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="ja" dir="ltr">
<head>
<title></title>
<script type="text/javascript">
<!--
function initialize_links()
{
if(document.all == null || document.readyState == null)
return;
var links = document.links;
var link;
for(var i=0; i<links.length; i++)
{
link = links[i];
if(link.hash == null || link.hash.length < 2)
continue;
link.href = "javascript:loadCompletedJump('" + link.href + "');";
}
}
function loadCompletedJump(href, target)
{
var iframe = document.createElement("iframe");
iframe.style.display = "none";
document.body.appendChild(iframe);
iframe.src = href;
check_loadcomp();
function check_loadcomp()
{
var iframe = document.body.lastChild;
if(iframe.readyState == "complete")
{
location.href = href;
return;
}
setTimeout(check_loadcomp, 1);
}
}
//-->
</script>
</head>
<body onload="initialize_links();">
<h1>test</h1>
<p><img src="http://www.tagindex.com/image/logo/title_head.gif" alt="tag index掲示板"
usemap="#maptest">
<map name="maptest">
<area shape="rect" coords="0,0,89,47" href="http://www.tagindex.com/cgi-lib/q2bbs/patio.cgi#CateLink2" alt="HTML掲示板">
</map></p>
<a href="http://www.tagindex.com/cgi-lib/q2bbs/patio.cgi#CateLink2">HTML掲示板</a>
</body>
</html>function initialize_links()
{
if(document.all == null || document.readyState == null)
return;
var links = document.links;
var link;
for(var i=0; i<links.length; i++)
{
link = links[i];
if(link.hash == null || link.hash.length < 2)
continue;
link.href =
"javascript:loadCompletedJump("+
"'" + link.href + "'"+
",'" + link.target + "'"+
");";
link.target = "_self";
}
}
function loadCompletedJump(href, target)
{
var iframe = document.createElement("iframe");
iframe.style.display = "none";
document.body.appendChild(iframe);
iframe.src = href;
check_loadcomp();
function check_loadcomp()
{
var iframe = document.body.lastChild;
if(iframe.readyState == "complete")
{
if(target == null || target.length == 0)
target = "_self";
window.open(href, target);
return;
}
setTimeout(check_loadcomp, 1);
}
}function initialize_links()
{
if(document.all == null || document.readyState == null)
return;
var links = document.links;
var link;
for(var i=0; i<links.length; i++)
{
link = links[i];
if(link.hash.length < 2 ||
link.href.toLowerCase().replace(/\s/g,'').indexOf('javascript:')>-1)
continue;
link.href =
"javascript:loadCompletedJump("+
"'" + link.href + "'"+
",'" + link.target + "'"+
");";
link.target = "_self";
}
}
function loadCompletedJump(href, target)
{
var iframe = document.createElement("iframe");
iframe.style.display = "none";
document.body.appendChild(iframe);
iframe.src = href;
check_loadcomp();
function check_loadcomp()
{
var iframe = document.body.lastChild;
if(iframe.readyState == "complete")
{
iframe.parentNode.removeChild(iframe);
if(target == null || target.length == 0)
target = "_self";
window.open(href, target);
return;
}
setTimeout(check_loadcomp, 1);
}
}