PHP,HTML:自动提交表单

时间:2013-09-03 20:18:07

标签: php html forms submit

我有一个带有HTML表单的PHP页面。如果在URL中设置了一些变量,我想自动在页面上提交表单。

IE:

if (isset($_GET['var']))
{
  // SUBMIT FORM
}
else
{
  // leave the page alone
}

编辑:

以下是我使用下面提供的答案,但它仍然无效。如果符合条件,我希望表单自我提交。

<?php

if ($r == 1)
{

echo "  
  <br>
   <form action=\"bookRoom.php\" method=\"post\" id=\"dateForm\">
    <input name=\"from\" type=\"hidden\" value=\"$fday/$fmonth/$fyear\">
    <input name=\"to\" type=\"hidden\" value=\"$tday/$tmonth/$tyear\">
    <input type=\"submit\">
   </form>

  <script type=\"text/javascript\">
    $('#dateForm').submit();
  </script>
";      
}
?>

2 个答案:

答案 0 :(得分:29)

使用纯javascript而不是jQuery:

<?php
    if (isset($_GET['var']))
{?>

<script type="text/javascript">
    document.getElementById('dateForm').submit(); // SUBMIT FORM
</script>

<?php 
}
else
{
  // leave the page alone
}
?>

答案 1 :(得分:2)

我想你想要这个:

<?php
if (isset($_GET['var']))
{?>

<script type="text/javascript">
document.getElementById("formid").submit(); // Here formid is the id of your form
                           ^
</script>

<?php }
else
{
  // leave the page alone
}
?>