如何从更改下拉框php和html中获取所选值

时间:2016-08-09 02:07:00

标签: php mysql html-select

def

我正在制作管理页面,所以这只是代码的一部分。在观众方面,一切看起来都是正确的,但是当我从下拉列表中选择一个值并按下" btn_up"时,代码不会将用户电子邮件保存在变量$ email中,这就是为什么它会检查如果它是空白的,因为它告诉我没有任何东西被保存到该值。那么我怎样才能保存从下拉列表中选择的任何值? var_dump()给了我这个错误

有一个errorstring(0)""

1 个答案:

答案 0 :(得分:-1)

 <script src="jquery-3.1.0.js"></script>
    <script>
        $(function () {
            $('#selectnumber').change(function(){
                alert('.val() = ' + $('#selectnumber').val() + '  AND  html() = ' + $('#selectnumber option:selected').html() + '  AND .text() = ' + $('#selectnumber option:selected').text());
            })
        });
    </script>
 <select id="selectnumber">
            <option value="1">one</option>
            <option value="2">two</option>
            <option value="3">three</option>
            <option value="4">four</option>
        </select>

Click to see out put screen

谢谢...:)