sql >> Base de Datos >  >> RDS >> Mysql

Cómo obtener el valor del botón usando Javascript

prueba algo como

<script type="text/javascript">
  function getVal(value)
  {

   alert(value);
  }
 </script>
 <input type="button" value="Add" onclick="getVal(this.value)">