8

我有一个带有 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>
";      
}
?>
4

2 回答 2

32

使用纯 javascript 而不是 jQuery:

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

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

<?php 
}
else
{
  // leave the page alone
}
?>
于 2013-09-03T20:33:23.690 回答
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
}
?>
于 2013-09-03T20:24:12.350 回答