日期:2014-05-16 浏览次数:20923 次
f<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<title>框架页</title>
<script type="text/javascript" src="js/jquery-1.8.3.js" ></script>
<script type="text/javascript" >
function openContentByHash(hash) {
switch(hash)
{
case "#products":
$("#framecontent").attr("src", "projects.html");
break;
case "#contact":
$("#framecontent").attr("src","contact.html");
break;
default:
$("#framecontent").attr("src", "about:blank;");
}
}
</script>
</head>
<body>
<div id="nav"> <a href="#products">产品</a> <a href="#contact">联系我们</a></div>
<iframe id="framecontent" name="framecontent" src="about:blank;" frameborder="1" scrolling="auto"></iframe>
<script type="text/javascript" >
$("#nav a").click(function () {
openContentByHash($(this).attr("href"));
});
if (window.location.hash != "") {
openContentByHash(window.location.hash);
}
</script>
</body>
</html>