如何获取 Laravel 中的 select 选项值

How to get the select option value in Laravel

我有一个 select 选项,如下所示。

<select name = "type">
 <option value="">Select one</option>
 <option value="1">Abc</option>
 <option value="2">Xyz</option>
</select>

我尝试使用 Input::get('type') 获取值,但获取标签 Abc。我需要获取 123 的值,具体取决于我正在 selecting 的值。我什至试过这个

<select name = "type" onchange="document.getElementById('typeId').value=this.options[this.selectedIndex].value;">

但同样的事情发生了。我该怎么做?

刚刚

document.getElementById('typeId').value=this.value;