doufan6033 2019-07-19 00:34
浏览 51
已采纳

如何对列表中的行点击做出反应?

Someone can help me to solve this I have this html select tag, and I have a button, how to react on the one line from this list and press the button, so this line will be redirected to another page?

<p><strong>Select your favorite species of flamingo.</strong></p>

<select size="6">
          <option value="American">American flamingo</option>
          <option value="Andean">Andean flamingo</option>
          <option value="Chilean">Chilean flamingo</option>
          <option value="Greater">Greater flamingo</option>
          <option value="James's">James's flamingo</option>
          <option value="Lesser">Lesser flamingo</option>
</select>

       <input name="submit" type="submit" value=" OK!">
  • 写回答

2条回答 默认 最新

  • douju9272 2019-07-19 01:14
    关注

    You don't need javascript for this if you have some php in place. It's standard form controls functionality. I'm assuming you have some kind of script reading some parameter. I'm going to call the script photos.php and the parameter species.

    <form method="get" action="photos.php">
      <select name="species">
        <option value="">Select one...</option>
        <option value="American">American flamingo</option>
        <option value="Andean">Andean flamingo</option>
        <option value="Chilean">Chilean flamingo</option>
        <option value="Greater">Greater flamingo</option>
        <option value="James's">James's flamingo</option>
        <option value="Lesser">Lesser flamingo</option>
      </select>
    
      <input name="submit" type="submit" value=" OK!">
    </form>
    

    Then, in your php, check the value and redirect:

    if (isset($_GET['species'])) {
        if (in_array($_GET['species'], ['American', 'Andean'])) { // Other species omitted
          header('Location: /photos/'. $_GET['species'] . '.html';
          exit();
        }
    } else {
         // Output your selection form
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 keil的map文件中Image component sizes各项意思
  • ¥30 BC260Y用MQTT向阿里云发布主题消息一直错误
  • ¥20 求个正点原子stm32f407开发版的贪吃蛇游戏
  • ¥15 划分vlan后,链路不通了?
  • ¥20 求各位懂行的人,注册表能不能看到usb使用得具体信息,干了什么,传输了什么数据
  • ¥15 Vue3 大型图片数据拖动排序
  • ¥15 Centos / PETGEM
  • ¥15 划分vlan后不通了
  • ¥20 用雷电模拟器安装百达屋apk一直闪退
  • ¥15 算能科技20240506咨询(拒绝大模型回答)