Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
选择选项时如何从下拉列表中获取值并立即触发提交按钮。我可以做到,php但我想用kohana但不知道。我是新手并且正在使用kohana 3.2.
php
kohana
kohana 3.2
在 Kohana 控制器中,您将使用该request对象来访问 POST 数据。例如:
request
$selectedValue = $this->request->post('dropdownlist');