如何重新加载页面并使用PHP + JS显示查询参数?

时间:2017-11-14 09:33:05

标签: javascript php html

function myfun()
{
  var nm=12;
  window.location.href="bkd.php?uid="+nm;
}

<form name="frm" method="GET">
  <input type="text" value="ghf" onclick="myfun();"></input>
  <input type="hidden" value="" name="txtval" id="txtval"></input>
  <?php 
    echo $_GET["uid"];
  ?>
</form>

我在同一页面上添加了JS和HTML。当我执行代码时,我在PHP中获取值,但它也显示

  

“Undefined index:uid”

1 个答案:

答案 0 :(得分:3)

第一次加载页面时$_GET['uid']可能未设置,因此您需要进行检查。您可以使用array_key_exists()

我还建议将onclick操作放在按钮而不是文本字段上。

function myfun()
{
    var nm=12;
    window.location.href="bkd.php?uid="+nm;
}

<form name="frm" method="GET">
<input type="text" value="ghf"></input>
<input type="hidden" value="" name="txtval" id="txtval"></input>
<input type="button" onclick="myfun();"></input>
<?php
if (array_key_exists("uid", $_GET)) { 
    echo $_GET["uid"];
}

?>
</form>