Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <script language="javascript" type="text/javascript">
- <!--
- function controlla() {
- //prendo il valore di ogni option
- for( i = 0; i < 3 ; i++)
- {
- if (optform.opt[i].checked)
- {
- switch(optform.opt[i].value)
- {
- case \'update\':
- alert("update");
- break;
- case \'delete\':
- alert("delete");
- break;
- case \'insert\':
- alert("insert");
- break;
- }
- }
- }
- }
- function showHide(id)
- {
- if (id.style.display != 'block')
- id.style.display = 'block';
- else
- id.style.display = 'none';
- }
- //-->
- </script>
- <style type="text/css">
- </style>
- </head>
- <body>
- <center>
- <form name="optform">
- <label>Aggiorna</label><input type="radio" value="update" name="opt" /><br>
- <label>Elimina</label> <input type="radio" value="delete" name="opt" /><br>
- <label>Inserisci</label> <input type="radio" value="insert" name="opt" /><br>
- <input type="button" value="vai!" onClick="controlla()" />
- </form>
- </body>
- </html>
Advertisement
Add Comment
Please, Sign In to add comment