a.html
----------------------
<html>
<head>
</head>
<body>
<div id="d_1">
<p>This is a paragraph.</p>
<p>This is another paragraph.</p>
</div>
</body>
</html>
b.html
-----------------------------
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=GBK">
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.8.0.js"></script>
<script type="text/javascript">
$(document).ready(function(){
///获取a.html中d_1的内容
///
});
</script>
<meta http-equiv="pragma" content="no-cache">
</head>
<body >
</body>
</html>
a.html以子页面的形式嵌套在b.html中,父页面加载子页面成功后,如何获取子页面中div相关的内容?请高手指导:)
--
FROM 221.221.185.*