日期:2014-05-17 浏览次数:20438 次
<div id="middle">
<iframe id="middle_main" src="main.aspx">
</iframe>
</div>
<body>
<form id="form1" runat="server">
<div id="main">
</div>
</form>
</body>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript">
function dd() {
alert(frames[0].getmain());
return false;
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div id="middle">
<iframe id="middle_main" src="main.aspx">
</iframe>
<button onclick="dd();">sadfsadf</button>
</div>
</form>
</body>
</html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript">
var getmain = function () {
return document.getElementById("main").offsetHeight;
};
</script>
</head>
<body>
<form id="form1" runat="server">
<div id="main" style="width:100px; height:100px; background-color:Silver">
</div>
</form>
</body>
</html>
$("#middle_main").contents().find("#main").height()