如何在下拉菜单中显示您选择的数据?

时间:2016-07-20 21:42:30

标签: php html css dropdown

目前我有一个下拉菜单。此下拉菜单将显示我的数据库的一列数据。这对我来说很好。

但是,我希望实现此功能:当用户点击下拉菜单中的一个选项时,该页面将为用户提供包含他点击的选项的短语,如下所示"您选择[他点击的选项]! "

我该怎么做才能实现这个目标?

这是我的下拉菜单代码:

<!DOCTYPE html>
<html>
<head>
<style>
.dropbtn {
    background-color: #3D85C6;
    color: white;
    font-family:  sans-serif;
    font-weight: bold;
    font-size: 18px;
    padding: 18px;
    border: none;
    cursor: pointer; }

.dropdown {
    position: left;
    display: inline-block; }

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); }

.dropdown-content a {
    color: black;
    font-family:  sans-serif;
    padding: 12px 16px;
    text-decoration: none;
    display: block; }

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
    display: block; }

.dropdown:hover .dropbtn {
    background-color: #3D85C6; }
</style>
</head>
<body>
<div class="dropdown">
    <button class="dropbtn">Orgnazitions</button>     
    <div class="dropdown-content">
        <?php
            $db = new mysqli('localhost:8889', 'root', 'root', 'VBS');

            if($db->connect_errno > 0){
                die('Unable to connect to database [' . $db->connect_error . ']');
            }

            $sql = "SELECT * FROM Orgnazition";

            if (!$result = $db->query($sql)){
                die('There was an error running the query [' . $db->error . ']');
            }

            while ($row = $result->fetch_assoc()) {
                echo "<a href='choose.php'>".$row['OrgName']."</a>";
             } ?>
            </div>
        </div>
    </body>
</html>

1 个答案:

答案 0 :(得分:-1)

要解决您的问题,需要添加javaScript代码,因为您无法使用CSS更改其他元素的html文本。

如果你想要我,我可以在jQuery中向你展示一个解决方案。

我也可以给你一个我自己制作的下拉列表。

以下是解决方案:

使用jQuery你只需要这样做:

$(".options").click(function () { //click event on the option var text_to_show = $(this).html(); //saves the option into a variable $("#show_result_id").html("Your answer:" + text_to_show); //displays the answer on your page });

这对你有用。如果您有任何问题,请发表评论。