1
IEがページを更新しないようにするにはどうすればよいですか?私は、それがアップロードしてはいけません、同じページなので、それはFF、SF & C.ように振る舞うしたい...IEがページを更新しないようにする - iframe _top
親ページ:
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<p>This is the parent page. I don't want this page to reload in IE when the link in the iframe is clicked, since it break our javascript. I only want the "hash" to change.</p>
<iframe src="http://example.com/iframepage.html"></iframe>
</body>
</html>
インラインフレームページ:
<!DOCTYPE html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
</head>
<body>
<p>This is the iframe page. The URL is the same as the parent page + anchorlink. When I klick this link in IE the page refresch and the javascript breaks. In FF, SF & C it doesn’t "refresh" page…</p>
<a href="http://www.example.com/test.html#test1" target="_top">test1</a>
</body>
</html>
私が転記したときのHTML disipeard。親ページの URL:http://www.example.com/test.html のiframe内リンク:のhref = "http://www.example.com/test.html#test1" ターゲット= "_top"> test1 – Hakan