<input type="button" value="getmd5" id="a2" />
<input type="button" value="getmd5" id="a3" />
</body>
<script>
$('input').bind('click',function(){
//alert(event.currentTarget.id);//a1
//this == event.currentTarget //true
alert(this.id);
});
可以采用这种绑定策略,取到dom元素的id值
版权声明:本文为博主原创文章,未经博主允许不得转载。