0

我目前有一个非常基本的 HTML 表单,它使用 PHP 页面将数据提交到一个简单的数据库。

我想知道是否可以在将所有提交的数据发送到数据库之前将所有提交的数据放在表单下方,以便用户确认它是正确的。还想知道用户是否可以同时从同一页面提交多个表单?

任何帮助表示赞赏!

4

1 回答 1

0

我不知道我是否理解它,但你可能会使用 javascript 完成一些事情。您制作了一个功能,该功能将在按下提交按钮时触发。这个提交按钮,必须是一个正常的按钮才能做到这一点。然后使用 onclick 事件触发该功能。像这样的东西。

<form id="FormId" action="Page.php" method="POST"><!--you can use any method you want here, I used POST-->
    <!--Here are some input fields-->
    <input type="Button" id="Submit" value="Submit" onclick="MyFunction()"/>
</form>

在你的javascript(单独的文件或文档头标签内)中,你把这个函数:

function MyFunction(){
    var data1 = document.getElementById('inputID').value;
    var data2 = document.getElementById('2einputID').value;
        //You place the data where you want it, like this:
    document.getElementById('IDDestination').value = data1;
        //You could submit the file like this:
    document.getElementById('FormId').submit();
        //You could make a confirm popup to make sure all is OK:
    var proceed = confirm("Submit Data? Data1="+data1+" and Data2="+data2);
    if(proceed){
        document.getElementById('FormId').submit();
    }
}

我希望这会有所帮助。

于 2013-10-18T12:06:26.147 回答