html中利用js如何获得我所点的input的id或者其他属性值 日期:2017-08-23 13:59:40 人气:3 html中利用js如何获得我所点的input的id或者其他属性值 使用this对象 function showValue() { alert(this.event.srcElement.id);//得到触发事件的标签元素,进而访问属性 }