Advertisement
vinissh

painel_admin_js

Mar 7th, 2020
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /* Validação da opção selecionada */
  2. document.getElementById("selecionaropcoes").onchange = function(){
  3.     const selecionado = $("#selecionaropcoes :selected").text();
  4.     alert(`A execução do seu comando irá ${selecionado}, clique em executar para  concluir ...`)
  5.  
  6. }
  7.  
  8.  
  9. /* Tentativas de melhorar o uso do sistema */
  10. //event.preventDefault();
  11.  
  12.  
  13. /* Criando novos botoes para teste */
  14. $("#controlform").before(function(){
  15.  
  16.     '<button  class="INPUT" style="width:80px" type="button">Conta Desblo</button>',
  17.  
  18. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement