<body>
<input type="button" age = "221" name="box" value="测试" οnclick="test(this)" />
<script type="text/javascript">
function test(obj){
alert(obj.name); //因为name是对象自带的属性,直接对象 obj.name
alert(obj.getAttribute("age")); //age不是对象自带的属性,所以需要采用 obj.getAttribute("age"); 这样来获取自定义的age的属性值
};
</script>
</body>
<body>
<input type="button" age = "221" name="box" value="测试" οnclick="test(this)" />
<a href="javascript:void(0);" οnclick="javascript:test(this)">A标签测试</a>
<a href="javascript:void(0);" οnclick="test(this)">A标签测试</a>
<script type="text/javascript">
function test(e){
alert(e.onclick); //因为name是对象自带的属性,直接对象 obj.name
alert(e.getAttribute("age")); //age不是对象自带的属性,所以需要采用 obj.getAttribute("age"); 这样来获取自定义的age的属性值
};
</script>
</body>