文件一:
<html>
<head>
<script language="javascript" type="text/javascript">
<!--在此如何写监听这个帧中的计算按钮的onclick事件-->window.CollDataTable.document.forms[0].js.onclick=handle
<!--查过书,好象都是这么写的,可就是没效果-->
function handle(){
alert("监听到了!");
}
</script>
</head>
<iframe id=CollDataTable name=CollDataTable src="frame1.html" frameborder=1 width=100% height=100%></iframe>
<body>
</body>
</html>文件二(需要和文件一放在同一目录下,因为它是嵌入在文件一中的一个帧):
<html>
<head>
<script language="javascript" type="text/javascript"></script>
</head>
<form name="aa" action="">
<input type="button" name="js" value="计算">
</form>
<body>
</body>
</html>