<! DOCTYPE html>
<meta charset= "UTF-8" >
<title></title>
<link href= "" rel= "stylesheet" type= "Text/css" >
<script type= "Text/javascript" >
Function Dada (evt) {
var obj = Event.target;
var s = obj.value;
Obj.value = parsefloat (s) + 1;
}
</script>
<body>
<input type= "button" value= "1" id= "Btn1" onclick= "Dada (event)"/>
<input type= "button" value= "1" id= "btn2" onclick= "Dada (event)"/>
<input type= "button" value= "1" id= "Btn3" onclick= "Dada (event)"/>
</body>
________________________________________
This
<! DOCTYPE html>
<meta charset= "UTF-8" >
<title></title>
<link href= "" rel= "stylesheet" type= "Text/css" >
<script type= "Text/javascript" >
Function Dada (myinput) {
Myinput.value = parsefloat (myinput.value) + 1;
}
</script>
<body>
<input type= "button" value= "1" id= "Btn1" onclick= "Dada (this)"/>
<input type= "button" value= "1" id= "btn2" onclick= "Dada (this)"/>
<input type= "button" value= "1" id= "Btn3" onclick= "Dada (this)"/>
</body>
This event uses