用这段测试一下,主流的都是bubble
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="en">
<head>
<title>Event order test page</title>
</head>
<body>
<div onclick="alert('outer')">
<div onclick="alert('inner')">
*************
</div>
</div>
</body>
</html>
【 在 seaver31 (benny) 的大作中提到: 】
: <input type="button" id ="button1" value="Click Me" onclick="alert('button')" /> 这里面的click事件处理函数会在
: bubbling phase还是capture phase 执行? 在dom兼容浏览器里面
--
FROM 221.137.223.*