如何执行第一个PHP函数比javascript函数onclicking /提交提交按钮

时间:2016-09-09 15:05:30

标签: javascript php jquery sql ajax

我有这个输入字段:

<input type="submit"  name="rregjistro" value="Rregjistro Tani Te Dhenat" onclick="openmodal()" >

我想首先在PHP中执行POST脚本,而不是使用javascript函数打开模式弹出窗口。

你能帮帮我吧! 提前谢谢!

2 个答案:

答案 0 :(得分:4)

无法使用PHP进行点击,因为表单提交是客户端的操作,即在您的浏览器中。像这样的浏览器中的事件可以通过javascript或其他客户端语言执行。

<form ... >
<input type="submit"  name="rregjistro" value="Rregjistro" />
<!-- remove onclick attribute for now -->

</form>

<div id="myResult"></div>

<script>
$(function(){
    $("input[name=rregjistro]").click(function(){
        // url needs to belong to your domain
        $.ajax({url: "/your_url_path", success: function(result){
            $("#myResult").html(result);
            open();
        }});
    });
});
</script>

答案 1 :(得分:0)

您仍然需要先使用javascript函数。

在jquery中就是这样的:

function open() {
  $.post('http://url', $('#form').serialize(), function() {
    alert('popup goes here');
  })
)