请教怎样才能运作另一个frame中的方法(在线等)??
A.htm
------------------------------------------------------
<script src="C.js"></script>
<body>
<iframe src="B.html"></iframe>
</body>
B.htm
------------------------------------------------------
<body onload="怎样才能运行A.htm中的runMe()">
</body>
C.js
------------------------------------------------------
function runMe(){
document.write('This is Test!');
}
请大家救命呀!