One form, One submission button, but TWO actions

后端 未结 5 787
佛祖请我去吃肉
佛祖请我去吃肉 2020-12-11 05:44

I have a form that collects client\'s info and then it

  • saves them in the database
  • sends out few emails
  • sends the info to SalesForce (SF) depar
5条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-11 05:54

    function fun_atualizar() {
        document.orcamento.action = "atualizar_orcamento.php";
        document.orcamento.submit();
        return true;
    }
    
    function fun_evento() {
        document.orcamento.action = "Evento_orc.php";
        document.orcamento.submit();
        return true;
    }
    
    
    
    
    

提交回复
热议问题