输入banner图图片脚本导航/分类

javascript中onclick(this)用法介绍_javascript技巧

this指触发事件的对象
代码如下:



代码如下:

function test(obj){
alert(obj); //[object HTMLInputElement]
alert(obj.id); //myinput
alert(obj.value); //javascript中onclick中的this
}