<!doctype html>
|
<html>
|
<head>
|
<meta charset="utf-8">
|
<title>首页banner</title>
|
<link rel="stylesheet" href="/BuWan/css/index.css" type="text/css" />
|
|
<script type="text/javascript" src="/BuWan/js/jquery-1.9.1.min.js"></script>
|
<script type="text/javascript">
|
$(function() {
|
$("#systemlist").find("li").click(function() {
|
$("#systemlist").find("li").attr("class", "");
|
$(this).attr("class", "li_a1");
|
});
|
|
$(window.parent.document).find("#content").load(function() {
|
var main = $(window.parent.document).find("#content");
|
var thisheight = $(document).height() + 30;
|
main.height(thisheight);
|
});
|
|
});
|
</script>
|
</head>
|
|
<body>右侧内容
|
</body>
|
</html>
|