87,992
社区成员
发帖
与我相关
我的任务
分享
<html>
<head>
<title>onload事件处理</title>
<script type="text/javascript">
function XXX()
{
alert("help");
}
</script>
</head>
<body onload="XXX()"></body>
</html>
<html>
<head>
<title>onload事件处理</title>
<script type="text/javascript">
function XXX()
{
alert("help");
}
</script>
</head>
<body onload=function{ XXX();}></body>
</html>