我有这个输入字段:

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

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

你能帮我么!
提前致谢!

最佳答案

无法使用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>

10-08 07:59