我正在開發基於和標記的accient項目。如何調用子項中指定的javascript函數<frame>
這裏的父頁面(的index.html)的普通的HTML結構:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
</head>
<frameset rows="75px,*" frameborder="0">
<frame name="frame1" src="frames/frame1.html">
<frameset class="child_frameset">
<frame name="frame3" src="frames/frame3.html">
</frameset>
</frameset>
</html>
在這裏,我怎麼指定子幀上的javascript函數(frame3.html):
<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript">
function helloWorld(){
alert('hello world!');
}
</script>
</head>
<body>
<h1>I'm frame 3</h1>
</body>
</html>
我的任務是致電helloWorld()函數。我怎麼做?
在此先感謝!
正嘗試從父級調用函數? – Ibu 2011-05-10 07:34:27
是的!我試圖從父頁面調用** helloWorld()**函數(index.html) – LoomyBear 2011-05-10 08:14:07