复制代码代码如下:
<! Doctype html public "-// w3c // dtd xhtml 1.0 transisi // en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.dtd">
<html xmlns = "http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv = "konten tipe" content = "text /html; charset = utf-8" />
<title> js 函数中获取事件源 </iteme>
<type script = "text/javascript" bahasa = "javascript">
fungsi chang () {
var evt = event || window.event;
alert (evt.srcelement.id);
}
</script>
</head>
<div>
<input type = "text" onClick = "chang ();" id = "input_a" />
<input type = "text" onClick = "chang ();" id = "input_b" />
</div>
<body>
</body>
</html>