87,990
社区成员
发帖
与我相关
我的任务
分享<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Insert title here</title>
<script type="text/javascript">
function addEventListener(target, eventName, handler) {
if (target.addEventListener) {
target.addEventListener(eventName, handler, false);
} else {
target.attachEvent("on" + eventName, function(e) {handler.call(target, e);});
}
}
function a() {
alert(1);
}
function b() {
alert(2);
}
addEventListener(window, "load", a);
addEventListener(window, "load", b);
</script>
</head>
<body onload="a();b();">
<div id="test" style="width:400px; height:300px; border-style:solid; border-width:1px; background-color:#ffffff"></div>
</body>
</html>