代码之家  ›  专栏  ›  技术社区  ›  Derek Adair

<input type=“image”>似乎没有发布

  •  1
  • Derek Adair  · 技术社区  · 14 年前

    我不明白为什么…

    这工作:

    <?php
        if($_POST['test']) echo "posted";
    
    ?>
    
    <form method="POST" action="<?php echo $_SERVER['PHP_SELF']; ?>">
        <input type="submit" name="test" />
    </form>
    

    但这并不是:

    <?php
        if($_POST['test']) echo "posted";
    
    ?>
    
    <form method="POST" action="<?php echo $_SERVER['PHP_SELF']; ?>">
        <input type="image" name="test" src="images/button.submit.png" />
    </form>
    
    2 回复  |  直到 8 年前
        1
  •  6
  •   Michael Mrozek    14 年前

    当您通过图像发布时,点击的X/Y坐标将被发送。检查 $_POST['test_x'] $_POST['test_y']

        2
  •  2
  •   graphicdivine    14 年前

    图像输入只显示单击发生的位置的x和y坐标,而不一定是一个值。如果您真的想以这种方式使用图像,您也可以添加隐藏字段。